.entry-content a:hover
比.wp-block-button__link:hover
.
根据rules of specificity, 第一个选择器包含2个类选择器(.entry-content
和:hover
), 和1个类型选择器(a
), 对于specificity score 属于0,0,2,1
.
另一方面,第二个选择器包含2个类选择器(.wp-block-button__link
和:hover
), 没有类型选择器,分数为0,0,2,0
.
从您的问题中,我不清楚第二组选择器的确切来源,但假设您无法编辑它们,解决方案将是从原始选择器中排除古腾堡按钮。您可以使用:not
pseudo class:
.entry-content a:not(.wp-block-button__link):hover {
color: <color selected in the Customizer>;
}
现在,自定义程序选择的颜色将仅应用于不是块编辑器/古腾堡按钮的链接。