如何阻止此文本在固定宽度布局中向下折叠?

时间:2013-09-05 16:24:07

标签: css fixed-width

我将此网站设置为固定宽度,但信息块(右侧)保持向下折叠,当我缩小浏览器窗口或在移动设备中查看时,它会显示在页脚下方 http://royalstudiosla.com/videos/zedd-ft-foxes-clarity-acoustic/

    <article id="singlevideo">
        <div id="video">
        </div>
        <div id="info">


        </div>

</article>

1 个答案:

答案 0 :(得分:0)

我希望我能正确理解你,但我认为你的意思是'断言':

 p.test {word-break:break-all;}

 Options:
 normal :   Break words according to their usual rules
 break-all  : Lines may break between any two letters

或者我是误会,你想让长话能够打破并包裹到下一行。 在这种情况下使用:

 p.test {word-wrap:break-word;}

 Options:
 normal :   Break words only at allowed break points
 break-word :   Allows unbreakable words to be broken