国产gaysexchina男同gay,japanrcep老熟妇乱子伦视频,吃奶呻吟打开双腿做受动态图,成人色网站,国产av一区二区三区最新精品

App下載
首頁htmlcolumnCSS Layout - 如何創(chuàng)建具有標題和內容的單列布局

CSS Layout - 如何創(chuàng)建具有標題和內容的單列布局

我們想知道如何創(chuàng)建具有標題和內容的單列布局。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
#main {
  width: 1000px;
  min-height: 1000px;
  height: auto;
  position: absolute;
  left: 170px;
  overflow: hidden;
  border: 1px dotted blue;
}

#header {
  width: 100%;
  height: 250px;
  background:#EEE;
}

#content {
  width: 100%;
  height: 1000px;
  position: relative;
  top: 20px;
  background:#AAA;
}
</style>
</head>
<body>
<body>
  <div id='main'>
    <div id='header'>header</div>
    <div id='content'>content</div>
  </div>
</body>
</body>
</html>