flex結合媒體查詢佈局程式碼

admin發表於2018-09-13

關於flex彈性佈局可以參閱display:flex彈性佈局一章節。

下面分享一段程式碼例項,它不但使用了彈性佈局,而且利用了媒體查詢功能。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
.box div {
  width: 150px;
  padding: 20px;
}
.box1 {
  height: 120px;
  background-color: red;
}
.box2 {
  height: 100px;
  background-color: blue;
}
.box3 {
  height: 40px;
  background-color: pink;
}
.box4 {
  height: 200px;
  background-color: yellow;
}
@media (min-width: 640px) {
  .box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
@media (max-width: 640px) {
  .box {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .box4 {
    order: -1;
  }
}
</style>
</head>
<body>
  <div class="box">
    <div class="box1"></div>
    <div class="box2"></div>
    <div class="box3"></div>
    <div class="box4"></div>
  </div>
</body>
</html>

上面程式碼簡單演示了相關功能,更多內容參閱相關閱讀。

相關閱讀:

(1).媒體查詢參閱CSS3 Media Queries媒體查詢一章節。

(2).flex-direction參閱CSS3 flex-direction一章節。

(3).justify-content參閱CSS3 justify-content一章節。

(4).align-items參閱CSS3 align-items一章節。

(5).flex-wrap參閱CSS3 flex-wrap一章節。

(6).order參閱CSS3 order一章節。

相關文章