css 选择不是第一个的指定元素 0 By 董德多 on 2024年1月19日 Css 使用 css 选择不是除第一个 p 元素以外的所有 p 元素:p:not(:first-of-type) { font-size: 14px; } 或者:p:not(:nth-of-type(1)) { font-size: 14px; } first-of-type nth-of-type 选择器