Html 表格间距对齐
我是 html 的新手,我想知道如何制作一个表格来显示这样的内容。
“姓名”_ _ _ _“日期”
_ 应该是“空格”
我总是希望“姓名”在左侧对齐,“日期”在右侧对齐, 与它们的长度无关。
我完全不熟悉 html,我的代码的一小部分需要这部分。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在样式表中,将
text-align: left
应用于第一列中的单元格,将text-align: right
应用于第二列中的单元格。In your stylesheet, apply
text-align: left
to the cells in the first column andtext-align: right
to those in the second column.如果它们位于不同的列中,则第一个 td 执行
,第二个 td 执行
。if they're in different columns, the first td do
<td align='left'>
and the second one<td align='right'>
.这看起来像典型的两列布局。无序列表是这种模式的一个很好的工具:
CSS:
This looks like a typical two-column layout. Unordered lists are a good tool for this pattern:
CSS: