良好的表格实践 - 在表格中制作标题的最佳方法?
我基本上有一个数据表,我想设置间距,这样它就不会全部挤在一起。但是我希望表格的标题栏(第一行)忽略单元格填充规则。
有没有好的方法可以做到这一点?或者我是否必须为标题创建一个单独的表或其他内容?
I basically have a table of data and I want to set the spacing so it's not all cramped together. However I want the title bar of the table (first row) to ignore the cell padding rules.
Is there a good way to do this? Or do I have to create a seperate table or something for the header?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
是的,在你的 CSS 中:
假设:
Yes, in your CSS:
assuming:
使用 thead 和 tbody。
仅对 tbody 应用填充样式。
Use thead and tbody.
Apply padding styles for tbody only.
“标题栏”听起来像是 的理想内容
元素。
The 'title bar' sounds like the ideal content for a
<caption>
element.对于表头中的表格单元格,您可以使用 th 而不是 td。然后,您可以为标题和正文单元格定义单独的样式。
You can use th instead of td for the table cells in the table header. Then you can define seperate styles for the header and for the body cells.