hogashi.*

日記から何から

2022-01-24から1日間の記事一覧

CSSで3番目以降を:nth-child(n + 3)で書く

CSS には :nth-child() - CSS: Cascading Style Sheets | MDN という疑似クラスがあって、何番目の兄弟かを指定できる。 :nth-child(3) とかやると 3番目、みたいな感じで、 1 始まりになっている。 li:nth-child(3) { background-color: gold; font-size: 2…