CSSの要素を隣接・直下・間接の指定方法

記録
スポンサーリンク

CSSの指定方法メモ。

間接

.test ~ .test2 {}

直下

.test > .test_child {}

隣接

.test + .test2{}

コメント