我的顶部栏中有多个div
。它在Chrome中按预期工作,但在Firefox中,.third
div在第二行中被包围。如何让Firefox中的.third
div让nowrap
像Chrome一样?
http://jsfiddle.net/qhoc/C6f4c/
以下是条件:
.top
始终拥有width:100%
,因此它涵盖了整个浏览器窗口divs
(第一,第二,第三......)都有自己的预定义固定宽度帮助很感激!!
答案 0 :(得分:2)
删除浮动:从内部div中向左添加一个添加显示:inline-block。这些div将充当内联元素,但具有相同的块属性。
.top {
width: 100%; /* this is optional to accomplish your first condition, either you don't need to have inline-block on this element */
}
.top div {
position: relative;
/*float: left;*/
height: 100%;
display: inline-block;
}
答案 1 :(得分:1)