Why is my bootstrap navbar not displaying inline?

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

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

11条回答
  •  北荒
    北荒 (楼主)
    2021-01-01 21:13

    Currently on Bootstrap 4. The flex layout seems to be columnar by default in my ecosystem as well.

    The most direct override for this use case:

    .navbar-nav { 
        flex-direction: row;
    }
    

提交回复
热议问题