Bootstrap horizontal drop down

前端 未结 5 1974
半阙折子戏
半阙折子戏 2020-12-17 19:33

Take a look at this picture:

I want the dropdown menu items to be stack from left to right (horizontally). I cannot seem get this to work, tried using \"l

5条回答
  •  一向
    一向 (楼主)
    2020-12-17 20:04

    To add to @dj.cowan's solution, I removed the .navbar-nav position property utilizing instead the default .navbar position, which then made the dropdown 100% width of the page. I then added float:right to the li to lineup under navbar-right.

    li.dropdown {position: static; float:right}

    .dropdown-menu {width: 100%;}

    .dropdown-menu > li {display: inline-block;}

提交回复
热议问题