Applying CSS styles to all elements inside a DIV

后端 未结 7 924
孤独总比滥情好
孤独总比滥情好 2020-12-02 21:59

I would like to apply a CSS file to a concrete DIV in my page. This is the page structure:


...


        
相关标签:
7条回答
  • 2020-12-02 23:03
    .yourWrapperClass * {
     /* your styles for ALL */
    }
    

    This code will apply styles all elements inside .yourWrapperClass.

    0 讨论(0)
提交回复
热议问题