Applying CSS styles to all elements inside a DIV

后端 未结 7 944
孤独总比滥情好
孤独总比滥情好 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 22:49

    #applyCSS > * {
      /* Your style */
    }
    

    Check this JSfiddle

    It will style all children and grandchildren, but will exclude loosely flying text in the div itself and only target wrapped (by tags) content.

提交回复
热议问题