我正在尝试删除表格中第一个 h3 元素上方的边距(直接在其上方的 h2 元素看起来真的很奇怪)
是否可以选择第一个 h3 元素?
<table>
<tbody>
<tr>
<td>
<h3>I want to select this</h3>
</td>
</tr>
<tr>
<td>
<h3>But not this</h3>
</td>
</tr>
</tbody>
</table>
我试过这个:
table tbody tr td:first-child h3 {
margin-top: 0em;
}
但我失败得很惨