CSS Flexbox 之 justify-content

栏目: CSS · 发布时间: 5年前

内容简介:Flexbox 的CSS 3

Flexbox 的 justify-content 決定 Container 中的 Item 該 靠左靠右置中 對齊,但 靠左對其靠右對齊 是由 justify-contentrow-direction 共同決定。

Version

CSS 3

Layout

CSS Flexbox 之 justify-content

RGB 由左至右 開始長,因為 item 總和小於 container,所以長到 900px 就停止,右側灰色為 container 底色。

HTML

index.html

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Flex</title>
  <link rel="stylesheet" href="style.css">
</head>
<body>
  <div class="box">
    <div class="item item1">1</div>
    <div class="item item2">2</div>
    <div class="item item3">3</div>
  </div>
</body>
</html>

對 3 個 <div> 做 layout。

CSS

style.css

.box {
  display: flex;
  justify-content: flex-start;
  width: 960px;
  height: 240px;
  margin: auto;
  background-color: #d3d3d3;
}

.item {
  width: 300px;
}

.item1 {
  background-color: #faa;
}

.item2 {
  background-color: #afa;
}

.item3 {
  background-color: #aff;
}

第 1行

.box {
  display: flex;
  justify-content: flex-start;
}

除了設定 displayflex 外,還加上 justify-contentflex-start

justify-content: flex-start

從 flexbox 的開始處展開,並不一定是 由左至右由上至下 ,而是由 flex-direction 決定

CSS Flexbox 之 justify-content

若沒特別指定 flex-direction ,預設為 由左至右 ,視覺上相當於 靠左對齊

.box 
  display: flex;
  justify-content: flex-start;
  flex-direction: row-reverse;
}

若沒特別指定 flex-direction ,預設 flex-directionrow ,表示 由左至右 ,若特別指定為 row-reverse ,則為 由右至左

flex-direction: row-reverse

Flexbox 由右至左 展開

CSS Flexbox 之 justify-content

視覺上相當於 靠右對齊

.box {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}

若設定 flex-directioncolumn ,表示 由上至下

flex-direction: column

Flexbox 由上至下 展開

CSS Flexbox 之 justify-content

視覺上相當於 靠上對齊

.box {
  display: flex;
  justify-content: flex-start;
  flex-direction: column-reverse;
}

若設定 flex-directioncolumn-reverse ,表示 由下至上

flex-direction: column-reverse

Flexbox 由下至上 展開

CSS Flexbox 之 justify-content

視覺上相當於 靠下對齊

.box {
  display: flex;
  justify-content: center;
}

若設定 justify-contentcenter ,表示 item 將 置中 於 container。

CSS Flexbox 之 justify-content

視覺上相當於 置中對齊


以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Out of Control

Out of Control

Kevin Kelly / Basic Books / 1995-4-14 / USD 22.95

Out of Control is a summary of what we know about self-sustaining systems, both living ones such as a tropical wetland, or an artificial one, such as a computer simulation of our planet. The last chap......一起来看看 《Out of Control》 这本书的介绍吧!

在线进制转换器
在线进制转换器

各进制数互转换器

HTML 编码/解码
HTML 编码/解码

HTML 编码/解码

HEX HSV 转换工具
HEX HSV 转换工具

HEX HSV 互换工具