CSS Change List Item Background Color with Class

前端 未结 5 425
攒了一身酷
攒了一身酷 2020-12-16 01:31

I am trying to change the background color of one list item while there is another background color for other list items.

This is what I have:

5条回答
  •  醉话见心
    2020-12-16 01:52

    1) You can use the !important rule, like this:

    .selected
    {
      background-color:red !important;
    }
    

    See http://www.w3.org/TR/CSS2/cascade.html#important-rules for more info.

    2) In your example you can also get the red background by using ul.nav li.selected instead of just .selected. This makes the selector more specific.

    See http://www.w3.org/TR/CSS2/cascade.html#specificity for more info.

提交回复
热议问题