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

App下載
首頁(yè)htmlcolumnCSS Layout - 如何創(chuàng)建3行和單列布局

CSS Layout - 如何創(chuàng)建3行和單列布局

我們想知道如何創(chuàng)建3行和單列布局。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
body {
  margin: 0;
  padding: 0;
}

div#header {
  width: 100%;
  height: 65px;
  position: fixed;
  z-index: 100;
  background-color: #F00;
}

div#footer {
  width: 100%;
  height: 65px;
  position: fixed;
  bottom: 0;
  background-color: #06F;
}

div#content {
  background-color: #111;
  width: 100%;
  height: 100%;
  position: absolute;
}
</style>
</head>
<body>
  <div id="container">
    <div id="header"></div>
    <div id="content"></div>
    <div id="footer"></div>
  </div>
</body>
</html>