如何在折叠时水平显示bootstrap 3导航栏菜单项

时间:2014-08-14 08:06:13

标签: jquery css css3 razor twitter-bootstrap-3

我有一个Bootstrap 3导航栏女巫设置为在1295px的最小值上崩溃。 当它折叠并且我点击按钮时,我想让它水平而不是垂直显示菜单项。

有什么想法吗?

1 个答案:

答案 0 :(得分:1)

你可以做点什么

 <style>
@media ( max-width:1295px) {
.yourmenu{
 //do your css coding here, you may tweak the margin, padding, float of your menu

 }
}

</style>