表格中的垂直和水平标题?
如何获得具有水平和垂直标题的表格?
所以例如
header1 header2 header3
header1 1 1 1
header2 2 2 2
header3 3 3 3
How would I get a table with both horizontal and vertical headers?
So e.g.
header1 header2 header3
header1 1 1 1
header2 2 2 2
header3 3 3 3
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
就像 @UlrichSchwarz 所说,您可以在第一列中使用
而不是
。使用范围,您可以使其在语义上更具描述性:
Like @UlrichSchwarz said, you can just use
<th>
instead of<td>
in the first column. Using scope, you can make it more semantically descriptive:虽然您仍然可以仅
第一列中的条目,但没有
/
< 的列等效项/code> 据我所知。
While you can still just
<th>
the entries in the first column, there is no column-equivalent of<thead>
/<tbody>
that I'm aware of.简单的。只需将第一个
tr
中的第一个td
保留 - 空easy. Just leave the first
td
in the firsttr
- empty您可以使用相当基本的 HTML 和 CSS 类来实现它:
这只是一个草图/建议,但希望对未来的读者进行比较有用:)
You can make it with quite elementary HTML and CSS classes:
This is just a sketch/suggestion, but hopefully useful to compare for future readers :)