Bootstrap horizontal drop down

前端 未结 5 1970
半阙折子戏
半阙折子戏 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:05

    the dropdown-menu is restricted by the width of it's li container.

    just add :

    .dropdown-menu {
        margin-right:-1000px;
    }
    
    .dropdown-menu > li {
        display: inline-block;
    }
    

提交回复
热议问题