防止容器内浮动div的换行

时间:2019-03-08 11:13:02

标签: css

我有一张桌子,宽度设置为100%。 表格单元格包含一个div容器,其中包含3个div,前两个是浮动的,最后一个是两个都清晰的div。 我的问题是第二个div浮动表返回到下一行,因为表格宽度具有固定宽度,即100%,我无法更改,是否有任何我可以在不更改表格宽度的情况下解决此问题? / p>

这是html的结构:

<table style="border-collapse: collapse;width:100%"  border="0">
    <tbody>

        <tr>
            <td style="margin: 0;">
                <div style="padding-bottom: 3px;padding-top: 2px;min-width: 100px;">
                    <div style="float: left;">
                        <img style="margin-top: 2px;" src="x.gif">
                    </div>
                    <div style="float:left;margin-left: 5px;">
                        some long text
                    </div>
                    <div style="clear:both;"></div>
                </div>

            </td>
        </tr>

        ...

    </tbody>
</table>

0 个答案:

没有答案