How to display a list inline using Twitter's Bootstrap

前端 未结 9 1462
陌清茗
陌清茗 2021-01-29 21:46

I want to display a list inline using Bootstrap. Is there a class I can add from Bootstrap to achieve this?

9条回答
  •  一生所求
    2021-01-29 22:08

    Inline is not actually the inline we maybe require - i.e. display:inline

    Bootstrap inline as far as I observer is more of a horizontal orientation

    To display the list inline with other elements then we do need

    display: inline; added to the UL
    
    

    NB// Add to stylesheet

提交回复
热议问题