Changing the background for bootstrap dropdown a on hover

后端 未结 1 1042
一向
一向 2021-01-03 23:23

I am using bootstrap\'s dropdown from a navigation div, and I\'d like to change the color of the the sub-menu links on hover. Nothing I\'m attempting works,

1条回答
  •  隐瞒了意图╮
    2021-01-03 23:49

    Bootstrap defines a background image for the elements to override some clashes in their media queries. Remove the image to use a simple fill color.

    You can redefine your hover as follows:

    .dropdown-menu > li > a:hover {
        background-image: none;
        background-color: red;
    }
    

    http://jsfiddle.net/sW7Dh/4/

    0 讨论(0)
提交回复
热议问题