Using regular expression in css?

前端 未结 8 1580
野的像风
野的像风 2020-11-22 06:01

I have an html page with divs that have id(s) of the form s1, s2 and so on.

8条回答
  •  北恋
    北恋 (楼主)
    2020-11-22 06:36

    An ID is meant to identify the element uniquely. Any styles applied to it should also be unique to that element. If you have styles you want to apply to many elements, you should add a class to them all, rather than relying on ID selectors...

    ...
    ...
    ...

    and

    .sec {
        ...
    }
    

    Or in your specific case you could select all divisions inside your parent container, if nothing else is inside it, like so:

    #sections > div {
        ...
    }
    

提交回复
热议问题