Bootstrap dropdown menu text color

后端 未结 3 1643
花落未央
花落未央 2021-02-15 11:09

So i\'m working with Twitter\'s Bootstrap for the first time and I\'m trying to change the color of the text inside the dropdown menus once they have collapsed. (if that makes s

3条回答
  •  轮回少年
    2021-02-15 11:27

    Apply simple css and you are done

    See this example:

    .navbar{height:70px; padding-top:20px; }
    

    will change height and padding of navbar - that is outter container

    .dropdown-menu{background:rgba(0,0,0,0.5); color:white; }
    

    will change background color of dropdown-menu - that is ul under dropdown link. All we have to understand the structure of navbar.

       .dropdown-menu li>a{color:white; }
       .dropdown-menu>li{padding:5px; border-bottom:1px solid white;border-left:1px 
                  solid white;border-right:1px solid white }
       .dropdown-menu li>a:hover{background:white; }
    

提交回复
热议问题