From 8c832032e28fd42024b411ae1f6be3adae9ec5a4 Mon Sep 17 00:00:00 2001 From: clement Date: Sun, 31 May 2020 15:55:44 +0800 Subject: [PATCH] Only show hyperlink underline when hovered --- blog/blogstyle.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/blog/blogstyle.css b/blog/blogstyle.css index b8bfac2..47c84a6 100644 --- a/blog/blogstyle.css +++ b/blog/blogstyle.css @@ -13,3 +13,10 @@ h1,h2,h3 { display:flex; justify-content: space-around; } +a { + text-decoration: none; + color: inherit; +} +a:hover { + text-decoration: underline; +}