0

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

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

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

4

1 回答 1

3

不,您必须在以下border-bottom位置设置td

<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/

于 2012-07-11T12:02:04.010 回答