国产chinesehdxxxx野外,国产av无码专区亚洲av琪琪,播放男人添女人下边视频,成人国产精品一区二区免费看,chinese丰满人妻videos

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>