浮动表旁边的Div

时间:2012-04-24 06:45:10

标签: html css html-table

我正在尝试使用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>

2 个答案:

答案 0 :(得分:3)

为表格添加display:inline css!

答案 1 :(得分:1)

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