本文介绍了右对齐和左对齐在同一HTML表单元格中的文本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在HTML < table>
中有一个单元格。我想要部分的单元格内容是左对齐的,一部分是正确的。这是可能的吗?
I have a cell in an HTML <table>
. I would like part of the cell contents to be left justified and part to be right justified. Is this possible?
推荐答案
如果你想要他们在单独的行做巴兰说。如果您希望他们在同一行,请执行:
If you want them on separate lines do what Balon said. If you want them on the same lines, do:
<td>
<div style="float:left;width:50%;">this is left</div>
<div style="float:right;width:50%;">this is right</div>
</td>
这篇关于右对齐和左对齐在同一HTML表单元格中的文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!