How to target a specific

前端 未结 6 764
北恋
北恋 2021-02-08 20:27

I\'ve a code of some what like this:

6条回答
  •  甜味超标
    2021-02-08 20:59

    You can add a class to the images OR

    .foo img:nth-child(2) { css here }
    

    or

    .foo img:first-child { css here }
    .foo img:last-child { css here }
    

提交回复
热议问题