iT邦幫忙

2022 iThome 鐵人賽

DAY 28
0
自我挑戰組

CSS 面試趣系列 第 28

Day 27 - [Part 2] 介紹 Grid 內元素屬性

  • 分享至 

  • xImage
  •  

[Part 2] 介紹 Grid 內元素屬性

justify-self / align-self

  • grid container 可以透過 justify-items 和 align-items 定義 grid cell 所擺放的位置,那如果 grid cell 自己想要 overwrite justify-items 或是 align-items 可以使用 justify-self 和 align-self。

語法

justify-self: start | end | center | stretch;
align-self: start | end | center | stretch;

justify-self 範例

CodePen 範例

  • justify-self: start
    Imgur
  • justify-self: end
    Imgur
  • justify-self: center
    Imgur
  • justify-self: stretch
    Imgur

align-self 範例

CodePen 範例

  • align-self: start;
    Imgur

  • align-self: end;
    Imgur

  • align-self: center;
    Imgur

  • align-self: stretch
    Imgur

place-self

align-self 和 justify-self 的縮寫。

語法

place-self: align-self justify-self;

範例

place-self: center start;

相等於

align-self: center;
justify-self: start;

參考資料:
CSS進階:Grid格線佈局
Basic concepts of grid layout


上一篇
Day 27 - [Part 1] 介紹 Grid 內元素屬性
下一篇
Day 29 - Flexbox 和 Grid 的不同之處
系列文
CSS 面試趣30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言