Why is my bootstrap navbar not displaying inline?

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

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

11条回答
  •  梦毁少年i
    2021-01-01 21:23

    I was facing the same problem. Try this:

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

    It worked for me

提交回复
热议问题