From d7f7e4e5eee5e09a6782a2c0dc56b938d7c953a5 Mon Sep 17 00:00:00 2001 From: Estelle Weyl Date: Wed, 3 Jan 2024 09:27:07 -0800 Subject: [PATCH] fixed error: -webkit-font-smoothing value always is not a valid value for the experimental prefixed property. also, improved grammar --- feature-queries/or.html | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/feature-queries/or.html b/feature-queries/or.html index 4e8af4bf..aaa1851f 100644 --- a/feature-queries/or.html +++ b/feature-queries/or.html @@ -12,7 +12,7 @@ border: 4px solid blue; color: blue; } - @supports (font-smooth: always) or (-webkit-font-smoothing: always) { + @supports (font-smooth: always) or (-webkit-font-smoothing: antialiased) { .box { border: 4px dashed darkgreen; color: darkgreen; @@ -24,8 +24,7 @@
- If your browser supports font smoothing, the text - and border will be green. + The text and border will be green if your browser supports font smoothing.
@@ -34,7 +33,7 @@ border: 4px solid blue; color: blue; } -@supports (font-smooth: always) or (-webkit-font-smoothing: always) { +@supports (font-smooth: always) or (-webkit-font-smoothing: antialiased) { .box { border: 4px dashed darkgreen; color: darkgreen; @@ -44,7 +43,7 @@