gpt4 book ai didi

html - 将表格的 td 右对齐

转载 作者:行者123 更新时间:2023-11-28 05:10:10 24 4
gpt4 key购买 nike

在我的应用程序中,我有一个表格,其中包含如下所示的 tr

<tr>
<td><strong>Item Total:</strong></td>
<td><strong style = "float:right">₹975.00</strong></td>
</tr>

我想将第一个 td 移到第二个 td 附近。当我应用像 margin-left:20px; 这样的 css 时,它对我有用,但它也移动了我的其他 trtd也。我不想发生这种情况。

我的另一个tr如下

<tr>
<td class="item-image"><img alt="Loose"
src="loose.png1466140997"> </td>
<td class="item-name">Loose Tea</td>
<td class="item-qty">1</td>
<td class="item-price">₹200.00</td>
</tr>

下面是类似的fiddle .

请帮忙。

最佳答案

试试这个

<table>
<tr>
<td class="item-image"><img alt="Loose"
src="loose.png1466140997"> </td>
<td class="item-name">Loose Tea</td>
<td class="item-qty">1</td>
<td class="item-price">₹200.00</td>
</tr>
<tr>
<td colspan="3" align="right"><strong>Item Total:</strong></td>
<td><strong style = "float:right" >₹975.00</strong></td>
</tr>
</table>

关于html - 将表格的 td 右对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39607771/

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