Only show hyperlink underline when hovered

This commit is contained in:
2020-05-31 15:55:44 +08:00
parent 0e6c81b7ec
commit 8c832032e2

View File

@ -13,3 +13,10 @@ h1,h2,h3 {
display:flex; display:flex;
justify-content: space-around; justify-content: space-around;
} }
a {
text-decoration: none;
color: inherit;
}
a:hover {
text-decoration: underline;
}