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

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>