在以下代码段中,如何制作#blah
1)当超出max-width
#blah
时,中断(此处为1600px)
2)当超出容器宽度时,断行(此处为100%)=>我希望文本继续在页面的(隐藏)右侧部分?
使用white-space: pre-wrap;
会使案例1)和2)中的行都被破坏。
使用white-space: pre;
会使这些行永远不会被破坏。
#container { position: relative; width:100% }
#blah {
font-size: 100px;
max-width: 1600px;
white-space: pre-wrap;
}
<div id="container">
<div id="blah">Hahaha hahahah hah sdfds fdsf sd fds f sdf sd fs df sdf sd fs df sdf sd f sdf sd f sdf s df sd f dsf END</div>
</div>
答案 0 :(得分:1)
container
的宽度需要大于或等于blah
的宽度。
来自http://www.w3.org/TR/CSS2/visudet.html#min-max-widths:
使用您的示例:
max-width
(除非您的分辨率非常高)。这就是max-width
被忽略的原因。
我在Virtually infinite container (infinite width)发布了一个jQuery解决方案。
但是,这个问题的解决方案要简单得多。将width
样式添加到与blah
匹配的max-width
。这样,container
将自动增长以适应。
#container {
position: relative;
}
#blah {
font-size: 100px;
max-width: 1600px;
width: 1600px;
white-space: pre-wrap;
}
&#13;
<div id="container">
<div id="blah">Hahaha hahahah hah sdfds fdsf sd fds f sdf sd fs df sdf sd fs df sdf sd f sdf sd f sdf s df sd f dsf END</div>
</div>
&#13;