Applying CSS styles to all elements inside a DIV

后端 未结 7 948
孤独总比滥情好
孤独总比滥情好 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.

提交回复
热议问题