回答編集履歴

1

修正

2021/06/26 10:54

投稿

Jon_do
Jon_do

スコア1373

test CHANGED
@@ -25,3 +25,41 @@
25
25
  }
26
26
 
27
27
  ```
28
+
29
+
30
+
31
+ 追記:box-sizing や color , text-decorationなどは要素名ではなく、プロパティ名と呼びます。
32
+
33
+
34
+
35
+ (例)
36
+
37
+ プロパティ名を斜体にするなら
38
+
39
+ ```json
40
+
41
+ "scope": [
42
+
43
+ "support.type.vendored.property-name",
44
+
45
+ "support.type.property-name",
46
+
47
+ "variable.css",
48
+
49
+ "variable.scss",
50
+
51
+ "variable.other.less",
52
+
53
+ "source.coffee.embedded"
54
+
55
+ ],
56
+
57
+ "settings": {
58
+
59
+ "foreground": "#87bae4",
60
+
61
+ "fontStyle": "italic"
62
+
63
+ }
64
+
65
+ ```