flex彈性佈局程式碼例項

antzone發表於2018-05-20

分享一段程式碼例項,它利用實現flex彈性佈局效果。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
html, body {
  height: 100%;
  margin: 0;
}
body {
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
#top {
  display: -webkit-box;
  min-width: 600px;
}
#content {
  display: -webkit-box;
  -webkit-box-flex: 1;
  min-height: 100px;
}
#top div:nth-child(1) {
  width: 100px;
  height: 50px;
  background: #9999FF;
}
#top div:nth-child(2) {
  height: 50px;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  background: #c599b8;
}
#content div:nth-child(1) {
  width: 200px;
  background: #FF7878;
}
#content div:nth-child(2) {
  min-width: 300px;
  -webkit-box-flex: 1;
  background: #B7ACAC;
}
#content div:nth-child(3) {
  width: 100px;
  background: #EEC618;
}
#footer {
  min-width: 600px;
  height: 50px;
  background: #D852FF;
}
</style>
</head>
<body>
  <div id="top">
    <div>上左寬高固定</div>
    <div>上右,高度固定,寬度自適應</div>
  </div>
  <div id="content">
    <div>中1,寬度固定,高度自適應</div>
    <div>中2,寬高全部自適應</div>
    <div>中3,寬度固定,高度自適應</div>
  </div>
  <div id="footer">底部,高度固定,寬度自適應</div>
</body>
</html>

相關文章