Apply CSS rules to a nested class inside a div

前端 未结 3 1377
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-01-30 16:27

I don’t know exactly how to apply CSS to a nested element. Here is my example code, but I’m looking for a manual that explains all the rules:

3条回答
  •  走了就别回头了
    2021-01-30 16:28

    Use Css Selector for this, or learn more about Css Selector just go here https://www.w3schools.com/cssref/css_selectors.asp

    #main_text > .title {
      /* Style goes here */
    }
    
    #main_text .title {
      /* Style goes here */
    }
    

提交回复
热议问题