when to leave space ,when not in CSS?

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

    In the first case you select all li tags with class "highlight". In the second case you select children of li tags with class "highlight".

    You should read up on CSS selectors in the W3C specification.

提交回复
热议问题