1

我想知道,在 VS-Code 中编写 CSS 时:为什么属性“光标”以黄色突出显示,而所有其他属性都以蓝色突出显示?

在此处输入图像描述

我很欣赏任何见解。

谢谢!

4

1 回答 1

1

是的,这是一个糟糕的错误。如果您检查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 问题提交错误。

于 2020-03-12T03:00:34.943 回答