1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:07:34 +00:00

LibHTML: Make <a> tags blue and underline by default

In the future, this should only apply to "a:link", but since we don't
have pseudo-classes yet, all "a" tags will do for now.
This commit is contained in:
Andreas Kling 2019-09-28 22:32:04 +02:00
parent 8271ad40a5
commit a768724270

View file

@ -64,3 +64,8 @@ li {
margin-top: 2;
margin-bottom: 2;
}
a {
color: #0000ff;
text-decoration: underline;
}