我想知道,在 VS-Code 中编写 CSS 时:为什么属性“光标”以黄色突出显示,而所有其他属性都以蓝色突出显示?
我很欣赏任何见解。
谢谢!
是的,这是一个糟糕的错误。如果您检查cursor
范围,它表明它是一个标签,特别是entity.name.tag.css
!我敢打赌,您的真实标签也使用了相同的黄色。
您可以在设置中解决此问题:
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "meta.property-list.scss entity.name.tag.css",
"settings": {
"foreground": "#f3873f", // set to whatever color your tags are
// which the same "Tokens and Scopes" Inspector
// in the command palette will show you
}
},
]
},
您应该使用 vscode 问题提交错误。