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

LibWeb: Add default styling to abbr, acronym, mark, strike and tt

This commit is contained in:
Lady Gegga 2022-03-08 17:13:59 +01:00 committed by Linus Groh
parent 0b3c1b4c79
commit 2c1f5cd310

View file

@ -34,7 +34,8 @@ pre {
code,
kbd,
samp {
samp,
tt {
font-family: monospace;
}
@ -44,6 +45,7 @@ ins {
}
s,
strike,
del {
text-decoration: line-through;
}
@ -198,6 +200,15 @@ blockquote {
margin-right: 25px;
}
mark {
background: yellow;
}
abbr[title],
acronym[title] {
text-decoration: dotted underline;
}
ul,
ol {
padding-left: 20px;