gpt4 book ai didi

html - float : right in inline css of td

转载 作者:搜寻专家 更新时间:2023-10-31 23:15:58 25 4
gpt4 key购买 nike

下图中我的结果和期望: enter image description here

为此我尝试了:

<table>
<tr>
<td>Name:-</td>
<td><strong>XYZ</strong></td>
<span style="float: right;">
<td>Age:-</td>
<td><strong>38</strong></td>
</span>
</tr>
</table>

下图中我的结果和期望: enter image description here

最佳答案

您可以通过使用默认表格布局模式并展开第二个表格单元格来实现。

因为表格布局模式设置为auto ,即使我们将一个单元格扩展到表格的宽度,布局也会扩展该单元格以占用尽可能多的空间。

table {
width: 100%; /* <-- only this is necassery for this effect */
padding: 0.5em;
background: lightgrey;
}

.expand {
width: 100%;
}
<table>
<tr>
<td>Name:-</td>
<td class="expand"><strong>XYZ</strong></td>
<td>Age:-</td>
<td><strong>38</strong></td>
</tr>
</table>

通过添加一个空单元格并展开它可以达到同样的效果:

<table>
<tr>
<td>Name:-</td>
<td><strong>XYZ</strong></td>
<td class="expand"></td>
<td>Age:-</td>
<td><strong>38</strong></td>
</tr>
</table>

关于html - float : right in inline css of td,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56207183/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com