Why is my bootstrap navbar not displaying inline?

后端 未结 11 2217
感情败类
感情败类 2021-01-01 20:46

Here is my html using bootstrap (I\'m sure bootstrap is installed correctly)

11条回答
  •  情话喂你
    2021-01-01 21:22

    just simply add this into your CSS and get the elements in one line

    .navbar-nav {
      display: inline-block;
    }
    
    .navbar-nav li {
       display: inline-block;
    }
    

提交回复
热议问题