From eecfd6c27ba566a42d1283d20981d6a7f7bcbba9 Mon Sep 17 00:00:00 2001 From: Mark Goho <33099374+markgoho-EDT@users.noreply.github.com> Date: Mon, 9 Jul 2018 23:10:02 -0400 Subject: [PATCH] border-bottom: 0 instead of none I guess it's somewhat subjective, but some folks prefers the `0` over `none`. Take it or leave it. --- normalize.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/normalize.css b/normalize.css index 47b010e47..fa2fc4a0d 100644 --- a/normalize.css +++ b/normalize.css @@ -75,7 +75,7 @@ a { */ abbr[title] { - border-bottom: none; /* 1 */ + border-bottom: 0; /* 1 */ text-decoration: underline; /* 2 */ text-decoration: underline dotted; /* 2 */ }