gpt4 book ai didi

html - 表格行边框问题 - 需要一些填充或边距(左侧和右侧)

转载 作者:太空宇宙 更新时间:2023-11-04 15:45:21 25 4
gpt4 key购买 nike

点击链接http://jsfiddle.net/anglimass/njAFp/

我想要左右边框留一些空间:

现在:

enter image description here

想要:

enter image description here

请看“想要的图片”左​​右两边。我点击了“表格行”填充(左和右)。有人知道怎么做吗?

最佳答案

我不认为你可以在 TR 级别上做到这一点。 TD水平如何:

table tbody tr td {
border-top: 1px solid red;
border-bottom: 1px solid red;
}

table tr td:first-child {
padding-left: 20px;
border-left: 10px solid red;
}

table tr td:last-child,
td.last-td {
padding-left: 20px;
border-right: 10px solid red;
}

这在 x 浏览器兼容性方面也很重要。

编辑:您可以将上面的内容放到您的 fiddle 中并在 ie7 中查看它,将“hacky”“last-td”选择器添加到您的最后一个 TD(ie7 不支持“last-child”,但支持“first” - child ')

关于html - 表格行边框问题 - 需要一些填充或边距(左侧和右侧),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11796617/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com