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

視覺上相當於 置中對齊


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

查看所有标签

猜你喜欢:

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

引爆点

引爆点

【加】马尔科姆•格拉德威尔(Malcolm Gladwell) / 钱清、覃爱冬 / 中信出版社 / 2014-4 / 36.00元

《引爆点》是《纽约客》怪才格拉德威尔的一部才华横溢之作。他以社会上突如其来的流行潮为切入点,从全新角度探索了控制科学和营销模式。他认为,思想、行为、信息及产品常会像传染病暴发一样迅速传播。正如一个病人就能引起全城流感;几位涂鸦爱好者能在地铁掀起犯罪浪潮;一位满意而归的顾客还能让新开张的餐馆座无虚席;发起小规模流行的团队能引发大规模流行风暴。这些现象均属“社会流行潮”,它达到临界水平并爆发的那一刻,......一起来看看 《引爆点》 这本书的介绍吧!

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

HTML 编码/解码

Base64 编码/解码
Base64 编码/解码

Base64 编码/解码