如何通过 CSS 在父表中居中对齐 HTML 子表
我有以下 HTML 表格格式:
<table style="width: 100%;">
<tr>
<td>
//How to center this table within the parent-table cell?
<table style="width: 760px;">
<tr>
<td>
</td>
</tr>
</table>
</td>
</tr>
</table>
由于 HTML5 不支持表格的“align=center”,我试图找出如何在上面示例中的子表格的 CSS 中模拟“align=center”。
我尝试过使用 CSS margin 属性,但没有成功。
如何使上例中的子表居中?
I have the following HTML table format:
<table style="width: 100%;">
<tr>
<td>
//How to center this table within the parent-table cell?
<table style="width: 760px;">
<tr>
<td>
</td>
</tr>
</table>
</td>
</tr>
</table>
Since HTML5 doesn't support the 'align=center' for tables, I am trying to figure out how to simulate the 'align=center' in CSS for the sub-table in my example above.
I've tried messin' around with the CSS margin attribute to no avail.
How do I center the sub-table in the example above?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
margin:0 auto;
在本例中有效,在 IE 7-9、FF 4、Chrome 11 中测试/有效margin:0 auto;
worked in this example, tested/worked in IE 7-9, FF 4, Chrome 11