0

我正在尝试有一个 div 来保存我的广告并浮动到页面的右侧。我希望主体中的表格和文本位于广告的左侧,然后在广告结束时一直延伸到页面的右侧。

问题是主体中有一个表格,它不会显示在 div 的左侧。它显示在它的下方。我该如何解决?

<p> 
    <div style="margin:5px; float:right;">
        <img src="ad.jpg" height="600" width="160">
    </div>         
    blah blah blah
    <table width="100%">
        <tr><td>dsf</td></tr>
    </table> 
    the table because of the 100% appears below the div 
    for the ad.jpg instead of to the left of it
</p>
4

2 回答 2

5

Add display:inline css for the table!

于 2015-06-12T13:06:26.380 回答
1

将表格包含在另一个 div 中,并在第一个 div 中使用 clear 属性

于 2012-04-26T13:33:05.057 回答