We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 16dc97a + 10e5266 commit 624a7b9Copy full SHA for 624a7b9
index.js
@@ -41,6 +41,11 @@ var fontVariantProperties = {
41
"slashed-zero": "\"zero\""
42
},
43
44
+ "font-kerning": {
45
+ normal: "\"kern\"",
46
+ none: "\"kern\" off"
47
+ },
48
+
49
"font-variant": {
50
normal: "normal",
51
inherit: "inherit"
test/fixtures/font-variant.css
@@ -18,3 +18,6 @@ selector {
18
selector {
19
font-variant-position: normal;
20
}
21
+selector {
22
+ font-kerning: normal;
23
+}
test/fixtures/font-variant.expected.css
@@ -23,3 +23,7 @@ selector {
font-feature-settings: "subs" off, "sups" off;
24
25
26
27
+ font-feature-settings: "kern";
28
29
0 commit comments