when to leave space ,when not in CSS?

前端 未结 7 1123
无人共我
无人共我 2021-01-19 19:04

This is ok(without space):

li.highlight{
    background:#FF9900 none repeat scroll 0 0;
}

This will not work(with space):

l         


        
7条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-19 19:42

    Because space (in a selector) means descend down the DOM to find matching tags, so:

    • li.highlight
      • Means Find any list item with the class name highlight and apply this style
    • li .highlight
      • Means Find any element with the class name highlight, who's ancestor is a list item, and apply this style

提交回复
热议问题