Note Code
css
javascript
wordpress
home
>
blog
>
css
>
1つ目の要素を全てmargin-top:0;にしたい
1つ目の要素を全てmargin-top:0;にしたい
答えは下記の記述
▼ SCSS
& > *:first-child { margin-top: 0; }
要素の直下(>)の全て(*)、最初の要素(first-child)。
使う場面が多そうなので備忘録。
RETURN
top