如何让 CSS 选择器跳过<dd>
并应用于所有<dt>
唯一的?我试图只适用border-bottom
于第一个<dt>.
我试过:dl > dt:not(:last-child)
,但这也不起作用。
CSS:
dt:not(:last-child) {
border-bottom: 5px solid #dddddd;
}
HTML:
<dl>
<dt>Dates of Operation</dt>
<dd style="display: none;"></dd>
<dt>Dates of Operation</dt>
<dd style="display: none;"></dd>
<dt>Dates of Operation</dt>
<dd style="display: none;"></dd>
</dl>