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

App下載
首頁(yè)htmltwo_columnCSS Layout - 如何添加分隔符到兩個(gè)列布局

CSS Layout - 如何添加分隔符到兩個(gè)列布局

我們想知道如何添加分隔符到兩個(gè)列布局。


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
body {
  height: 1200px;
}

#content-wrapper {
  width: 100%;
  height: 100%;
  background: blue;
}

#header {
  background: black;
  color: white;
  height: 50px;
}

#menu {
  float: left;
  width: 200px;
  color: white;
  height: 100%;
}

#content {
  margin-left: 200px;
  background: green;
  color: white;
  height: 100%;
  border-left: 5px solid red;
}
</style>
</head>
<body>
<html>
<body>
  <div id="header">header</div>
  <div id="content-wrapper">
    <div id="menu">menu</div>
    <div id="content">
      content <br /> content <br /> content <br /> content <br />
      content <br /> content <br /> content <br /> content <br />
      content <br /> content <br /> content <br /> content <br />
      content <br /> content <br /> content <br /> content <br />
      content <br /> content <br /> content <br /> content <br />
      content <br /> content <br /> content <br />
    </div>
  </div>
</body>
</html>
</body>
</html>