Html 表格间距对齐

发布于 2025-01-06 06:03:10 字数 164 浏览 0 评论 0 原文

我是 html 的新手,我想知道如何制作一个表格来显示这样的内容。

“姓名”_ _ _ _“日期”

_ 应该是“空格”

我总是希望“姓名”在左侧对齐,“日期”在右侧对齐, 与它们的长度无关。

我完全不熟悉 html,我的代码的一小部分需要这部分。

I'm brand new to html and I was wondering how I could I make a table to display something like this.

"name"_ _ _ _"date"

_ are suppose to be "blank spaces"

I always want "name" aligned on the left and "date" on the right,
independent of what length they are.

I'm completely unfamiliar with html and I need this part for a very small portion of my code.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

向地狱狂奔 2025-01-13 06:03:10

在样式表中,将 text-align: left 应用于第一列中的单元格,将 text-align: right 应用于第二列中的单元格。

In your stylesheet, apply text-align: left to the cells in the first column and text-align: right to those in the second column.

你的他你的她 2025-01-13 06:03:10

如果它们位于不同的列中,则第一个 td 执行 ,第二个 td 执行

if they're in different columns, the first td do <td align='left'> and the second one <td align='right'>.

陪你搞怪i 2025-01-13 06:03:10

这看起来像典型的两列布局。无序列表是这种模式的一个很好的工具:

<div class="twoCol">
  <ul>
    <li><label>Name</label>Date</li>
    ... more rows ...
  </ul>
</div>

CSS:

.twoCol ul, twoCol li {
    margin:0;
    padding:0;
    list-style:none;   
}

.twoCol ul {
    width:200px;   
}   

.twoCol label {
     float:left;
     display:block;  
     width:120px;
     text-align:left;

}

.twoCol li {
     clear:both;
     text-align:right;   
}  

This looks like a typical two-column layout. Unordered lists are a good tool for this pattern:

<div class="twoCol">
  <ul>
    <li><label>Name</label>Date</li>
    ... more rows ...
  </ul>
</div>

CSS:

.twoCol ul, twoCol li {
    margin:0;
    padding:0;
    list-style:none;   
}

.twoCol ul {
    width:200px;   
}   

.twoCol label {
     float:left;
     display:block;  
     width:120px;
     text-align:left;

}

.twoCol li {
     clear:both;
     text-align:right;   
}  
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文