bootstrap菜单栏应该从左到右垂直扩展

问题描述:

我有引导菜单栏,假设这个链接https://v4-alpha.getbootstrap.com/examples/navbar-top/。当它是移动视图时,我需要菜单,如链接https://lekmer.se/。请帮我完成这个任务。预先感谢bootstrap菜单栏应该从左到右垂直扩展

您可以向左扩大它的权利只是改变.navbar-NAV CSS -webkit-box-orient: vertical;-webkit-box-orient: horizontal;flex-direction: column;flex-direction: row; 在CSS中的所有部分。示例代码如下

.navbar-nav { 
    display: flex; 
    -webkit-box-orient: horizontal; 
    -webkit-box-direction: normal; 
    flex-direction: row; 
    padding-left: 0; 
    margin-bottom: 0; 
    list-style: none 
}