From 603c1a9072b63d82392c34e0c0bd46de1983a8c8 Mon Sep 17 00:00:00 2001 From: xtzws Date: Sun, 20 Apr 2025 11:44:55 -0400 Subject: [PATCH] Removed text-decoration shorthand WebKit needs to step up their game --- ifdsa/index.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ifdsa/index.css b/ifdsa/index.css index 947405b..94a2dd2 100644 --- a/ifdsa/index.css +++ b/ifdsa/index.css @@ -19,12 +19,14 @@ body { } h1 { - text-decoration: underline #0E4385; + text-decoration-line: underline; + text-decoration-color: #0E4385; text-decoration-style: wavy; } h2 { - text-decoration: underline #C52947; + text-decoration-line: underline; + text-decoration-color: #C52947; text-decoration-style: wavy; }