我想将div(CSS3框)保持为一定的宽度。但不知何故,溢出:隐藏和最大宽度似乎被忽略。
<html>
<head></head>
<body>
<div style="display:-moz-box;">
<!-- Keep the red div 100 px wide, regardless of its content. But how? -->
<div style="background-color:red; padding:2px; width:100px; max-width:100px; overflow:hidden;">
<div style="width:500px; border: 1px solid yellow;"> </div>
</div>
<div>2</div>
</div>
</body>
</html>
目前正在Firefox 6中进行测试。