Bootstrap horizontal dropdown-menu?

后端 未结 1 821
野的像风
野的像风 2020-12-18 09:40

I\'d like a bootstrap dropdown menu where the links are horizontal. Unfortunately, I\'m having trouble with getting the width correct. The only way I can seem to make it hap

1条回答
  •  攒了一身酷
    2020-12-18 10:34

    Your Problem solved Horizontal List

    html


        

    css


     @import url('http://getbootstrap.com/dist/css/bootstrap.css');
     .dropdown-menu > li {
        display: inline-block;
        float:left;
    }
    .open > ul {
        display: inline-flex !important;
    }
    

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