Remove hyperlinks when printing

This commit is contained in:
Aiden Gall
2021-03-11 10:49:58 +00:00
committed by GitHub
parent 230c7078f1
commit 414f8bffa1

View File

@@ -34,3 +34,10 @@ img {
color: tomato ; color: tomato ;
} }
} }
@media print {
a[href] {
text-decoration: none ;
color: black ;
}
}