iT邦幫忙

2022 iThome 鐵人賽

DAY 26
0
自我挑戰組

CSS 面試趣系列 第 26

Day 26 - [Part 4] 介紹 Grid 外容器屬性

  • 分享至 

  • xImage
  •  

[Part 4] 介紹 Grid 外容器屬性

  • justify-content
  • align-content
  • place-content

content 則是指 grid cell 整體的分布,justifyalign 一樣指主軸和交錯軸的方向(水平和垂直)

  • start:預設值,對齊 grid container 的軸線起點
  • end:對齊 grid container 的軸線結點
  • center:對齊grid container 的軸線中央
  • stretch:伸展直到填滿 grid container 的軸線
  • space-around:各區域左右各自插入空隙
  • space-between:各區域之間插入空隙
  • space-evenly:各區域之間及與外容器間均分空隙

justify-content

CodePen 範例

  • justify-content:start

Imgur


  • justify-content:center

Imgur


  • justify-content: end

Imgur


  • justify-content:stretch

Imgur


  • justify-content: space-around

Imgur


  • justify-content: space-between

Imgur


  • justify-content: space-evenly

Imgur

align-content

CodePen 範例

  • align-content:start

Imgur

  • align-content:end

Imgur

  • align-content:center

Imgur

  • align-content:stretch

Imgur

  • align-content:space-around

Imgur

  • align-content:space-between

Imgur

  • align-content:space-evenly

Imgur

place-content

justify-contentalign-content 的縮寫。

.container {
	place-content: <align-content> <justify-content>
}
.container {
	place-content: center end;
}

相等於

.container {
	align-content: center;
	justify-content: end;
}

參考資料:
CSS進階:Grid格線佈局


上一篇
Day 25 - [Part 3] 介紹 Grid 外容器屬性
下一篇
Day 27 - [Part 1] 介紹 Grid 內元素屬性
系列文
CSS 面試趣30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言