缩进层次表结构
我正在尝试创建嵌套表的分层显示,其中每个子级别都从父级别进一步缩进。 我愿意使用 table 或 div。 我最接近的如下。 它在 IE 中看起来基本正确(除了右侧的边框混在一起)。 在 Chrome 中,子项目边框超出了右侧的父项目。
我也愿意使用 div。
<html>
<head>
<style type="text/css">
.ItemTable
{
width: 100%;
margin-left: 20px;
border: solid 1px #dbdce3;
}
</style>
</head>
<body>
<table class="ItemTable">
<tr>
<td>Item 1</td>
</tr>
<tr>
<td>
<table class="ItemTable">
<tr>
<td>Item 1A</td>
</tr>
</td>
</tr>
</table>
</body>
</html>
I am trying to create a hierarchical display of nested tables, where each sub level is indented further from the parent. I'm open to using table or div. The closest I've come is below. It looks mostly correct in IE (except that the borders on the right are mashed together). In Chrome the sub item border is extending beyond the parent on the right.
I'm open to using divs as well.
<html>
<head>
<style type="text/css">
.ItemTable
{
width: 100%;
margin-left: 20px;
border: solid 1px #dbdce3;
}
</style>
</head>
<body>
<table class="ItemTable">
<tr>
<td>Item 1</td>
</tr>
<tr>
<td>
<table class="ItemTable">
<tr>
<td>Item 1A</td>
</tr>
</td>
</tr>
</table>
</body>
</html>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
看起来有几件事。 你的子表缺少它的关闭标签,我在 TD 中添加了填充以帮助缩进:
在 Chrome、FF、IE6、IE7 和 Safari 中测试了它,看起来它可以工作。
Looks like a couple of things. Your sub table was missing it's close tag and i added padding to the TD to help with the indent:
Tested it in Chrome, FF, IE6, IE7 and Safari and it looks like it works.
您打算显示表格数据吗? 如果不是,你最好只使用 div 并为子元素应用边距,如下所示
当然,这实际上取决于你想要显示的内容。
Do you plan on displaying tabular data? If not you would be better just using div's for this and just applying a margin to the child element like shown below
Of course it really depends on what you are trying to display.
更改
为
适用于 IE7、firefox 和 chrome(尽管使用 chrome,我必须取消最大化窗口然后重新最大化它 - 对我来说看起来像是一个渲染错误)
changing
to
works for me on IE7, firefox and chrome (although with chrome I had to un-maximise the window then remaximise it - looks like a rendering bug to me)