这是我的 CSS 代码示例。
.step-radio-button:not(:disabled):not(:checked):hover + label {
background: yellow;
}
我已经尝试将 :disabled 更改为 [DISABLED] 或 :enabled 但它仍然不起作用。
.step-radio-button:not([DISABLED]):not(:checked):hover + label {
background: yellow;
}
或者
.step-radio-button:enabled:not(:checked):hover + label {
background: yellow;
}