1

如何让 div 停止换行?

4

3 回答 3

2

在您的 div 上设置此样式。它适用于 Chrome 和 IE。我没有测试过其他浏览器。

overflow: auto;
于 2013-09-03T15:55:49.807 回答
1

<div class="objectives">的意思是你想出现在下面<div class="icon">?如果是这样,div.objectives { clear: left; }应该做的伎俩。

还是您希望全部<div class="objectives">出现在旁边<div class="icon">?如果是这样,div.objectives { float:left; }应该让它发生。您可能还需要在div.objectives. 或者,删除浮动代码并将 和div.objectives设置div.icon{ display: inline-block; vertical-align: top; }

于 2013-09-03T16:00:01.183 回答
1

这工作只需编辑代码并将其替换为下面的代码

 
<div class="icon"><img align="left" alt="" src="/resource/uploads_scope/issues/090113/090113_pairedText_featuredSkills.png"></div>
<div style="overflow: auto;">
    <h5>Featured Skills:</h5>
        <p>Compare and contrast; vocabulary; shades of meaning.<br>
        <strong>Other Key Skills: forming and supporting a claim, inference, author’s craft, key ideas.</strong></p>
            </div>
            <div style="clear:both;">
                &nbsp;</div>
        </div>
于 2013-09-03T16:06:02.013 回答