iT邦幫忙

2021 iThome 鐵人賽

DAY 28
0
Modern Web

33歲轉職者的前端筆記系列 第 28

33歲轉職者的前端筆記 DAY 28 CSS 選取器類別筆記

  • 分享至 

  • xImage
  •  

CSS 最重要的一環就是選取器,新手一定要了解熟悉 CSS 選取器

才能事辦功倍,開發速度也會提升許多

今天就來寫下我常用的選取器筆記吧:)

:first-child 選取第一個子物件

p:first-child {
  color: red;
}

:first-of-type 選取第一個類型

p:first-of-type {
  color: red;
}

:last-child 選取最後一個子物件

p:last-child {
  color: red;
}

:last-of-type 選取最後一個類型

p:last-of-type {
  color: red;
}
:nth-child() 第 n 個子物件

p:nth-child(1) {
  color: red;
}
``
``:nth-last-child()``` 從結尾開始選取第 n 個子物件

p:nth-last-child(1) {
color: red;
}

```:nth-of-type()``` 選取第 n 的同類子物件

.wrap :nth-of-type(even) {
background-color: red;
}
``
:nth-last-of-type() 從結尾開始選第 n 的同類子物件

.wrap :nth-last-of-type(1) {
  background-color: red;
}

上一篇
33歲轉職者的前端筆記 DAY 27 CSS 三角形、三角形折角、轉 45 度漸層色
下一篇
33歲轉職者的前端筆記-DAY 29 前端面試題目練習
系列文
33歲轉職者的前端筆記30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言