Html 表格右对齐
--------------------------------
| item a item b |
| item c item d item e |
---------------------------------
| item a item b |
| item c item d item e |
我的表中有两行,我希望它们每行都有一个左对齐的项目和一些右对齐的项目,如上面的第一个示例所示。
但是,当我将 item b
、item d
和 item e
设置为 align="right"
时,我获取上面第二个示例的行为。为什么item b
与item d
对齐,而不是right
?
编辑:Jsfiddle
--------------------------------
| item a item b |
| item c item d item e |
---------------------------------
| item a item b |
| item c item d item e |
I have two rows in a table, and I'd like them to each have a left aligned item, and some right aligned items, like in the first example above.
However, when I set item b
, item d
, and item e
to align="right"
, I get the behavior of the second example above. Why is item b
lining up with item d
and not right
?
Edit: Jsfiddle
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你有一些不正确的语法。当我相信你的意思是
style="text-align:right;"
时,你正在使用style="align-right"
。您还需要将colspan="2"
添加到需要跨越 2 列的- 又名“item b”单元格:
http://jsfiddle.net/A5LDZ/2/
You had some incorrect syntax. You were using
style="align-right"
when I believe you meantstyle="text-align:right;"
. You also need to add acolspan="2"
to the<td>
which needs to span 2 columns - aka the "item b" cell:http://jsfiddle.net/A5LDZ/2/