CSS select first element with a certain class

前端 未结 3 1010
渐次进展
渐次进展 2020-12-01 13:13

What is the syntax for selecting the first element with a certain class? Please specify whether that method of selection is part of CSS3 or CSS2.1.

3条回答
  •  [愿得一人]
    2020-12-01 13:23

    Try this

    .testparent .test:first-child {
        color: red;
    }
    
    
    test
    test
    test

    the first div 'test' has red color only.

提交回复
热议问题