LoginSignup
1
2

More than 5 years have passed since last update.

CSSで包含する要素内で一番最後かつ特定のセレクタにスタイルをあてる

Last updated at Posted at 2018-03-22

CSSで最後の要素かつ特定にセレクタのときにスタイルをあてたいといったことは稀かもしれないですがそんなとき便利です

.container > *:last-child.target-item {
 color: red; 
}

codepenにサンプル作りました

See the Pen CSSで任意の包含する要素内で一番最後かつ任意のセレクタにスタイルをあてる by kwkm_0802 (@kwkm_0802) on CodePen.

1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2