gpt4 book ai didi

css - 使用 CSS 在表格单元格中右对齐

转载 作者:数据小太阳 更新时间:2023-10-29 09:06:22 25 4
gpt4 key购买 nike

我有这样的老经典代码

<td align="right">

它按照它说的做:它右对齐单元格中的内容。因此,如果我在此单元格中放置 2 个按钮,它们将出现在单元格的正确位置。

但后来我将其重构为 CSS,但没有右对齐这样的东西?我看到 text-align,是一样的吗?

最佳答案

使用

text-align: right

The text-align CSS property describes how inline content like text is aligned in its parent block element. text-align does not control the alignment of block elements itself, only their inline content.

text-align

<td class='alnright'>text to be aligned to right</td>

<style>
.alnright { text-align: right; }
</style>

关于css - 使用 CSS 在表格单元格中右对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1906469/

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