when to leave space ,when not in CSS?

前端 未结 7 1198
无人共我
无人共我 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:40

    Without space you are selecting a li with the class highlight. With the sapce you are selecting a descandant of a li, where the descendant has a class highlight.

提交回复
热议问题