在表格单元格中与CSS直接对齐

在表格单元格中与CSS直接对齐

本文介绍了在表格单元格中与CSS直接对齐的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有像这样的旧经典代码

 < td align =right> 

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



但是我重构了CSS,有没有这样的东西正确对齐?

$ p











pre> text-align:right



查看



 < td class ='alnright'对齐到右边< / td> 

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


I have the old classic code like this

<td align="right">

which does what it says: it right aligns the content in the cell.So if I put 2 buttons in this cell, they will appear at the right site of the cell.

But then I was refactoring this to CSS, but there is no such thing as right align? I see text-align, is that the same?

解决方案

Use

text-align: right

See

text-align

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

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

这篇关于在表格单元格中与CSS直接对齐的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-31 00:47