CSS nth-child for greater than and less than

前端 未结 6 1525
萌比男神i
萌比男神i 2021-01-31 13:24

In my HTML I have,

6条回答
  •  梦毁少年i
    2021-01-31 14:04

    Try the following code.It will apply styles to all .container classes except 1 and 2:

    .container+.container~.container{
       /*styles*/
    }
    

    Demo Fiddle

提交回复
热议问题