gpt4 book ai didi

html - 怎么把 table 放在另一张 table 下面

转载 作者:行者123 更新时间:2023-11-27 23:49:53 25 4
gpt4 key购买 nike

例如,如果我使用了对齐,如何将一张 table 放在另一张 table 下面。

           center_table
left_table
desired_table

但我得到以下结果

           center_table
left_table desired_table

这是我的 html 代码。 中心表

    <table align="left">
<tr>
<td>left_table</td>
</tr>
</table>

<table align="center">
<tr>
<td>desired_table</td>
</tr>
</table>

不使用 css 只有 HTML

最佳答案

只需添加一个<div style = "clear:both;"></div>在你的两张 table 之间。那么它应该可以工作

clear 属性指定元素的哪一侧不允许其他 float 元素。

您可以在此处找到更多详细信息 http://www.w3schools.com/cssref/pr_class_clear.asp

<table align="left">
<table align="left">
<tr>
<td>left_table</td>
</tr>
</table>
<div style="clear:both;"></div>

<table align="center">
<tr>
<td>desired_table</td>
</tr>
</table>
</table>

 <table align="left">
<tr>
<td>left_table</td>
</tr>
</table>

<div style="clear:both;"></div>

<table align="center">
<tr>
<td>desired_table</td>
</tr>
</table>

关于html - 怎么把 table 放在另一张 table 下面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27919317/

25 4 0