gpt4 book ai didi

html - 如何在长度为 2 列的行之间制作边框?

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

我有一个包含以下行的表格:

<tr class = 'output' style='border-bottom: 1px dotted silver;'>

但我需要边框的长度为 2 列(现在它的长度为 5(所有列)。这可能吗?

最佳答案

不,您必须在 td 上设置 border-bottom:

<tr class = 'output'>
<td style='border-bottom: 1px dotted silver;'></td>
<td style='border-bottom: 1px dotted silver;'></td>
<td></td>
<td></td>
<td></td>
</tr>

或者,您可以使用 CSS 执行此操作:

table tr.output td:nth-child(1), table tr.output td:nth-child(2) {
border-bottom: 1px dotted silver;
}​

http://jsfiddle.net/awUTV/

关于html - 如何在长度为 2 列的行之间制作边框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11432181/

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