Bootstrap 3下拉菜单不适合内容的宽度

时间:2014-09-10 14:22:41

标签: html css twitter-bootstrap twitter-bootstrap-3

我在下拉菜单中遇到了这个小问题。 我需要宽度适合内容中的内容

在我的CSS中我正在使用

width: -ms-max-content;
width: -webkit-max-content;
width: -moz-max-content;
width: -o-max-content;

但它不适用于IE,还有另一种方法吗? 感谢

enter image description here

2 个答案:

答案 0 :(得分:1)

请试试这段代码吗?

ul li a{
   white-space:normal;
}

答案 1 :(得分:0)

删除图片上的pull-left课程,然后无需使用max-content即可使用。

Working Bootply