mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-08 10:36:02 +00:00
LibWeb: Add default styling to abbr, acronym, mark, strike and tt
This commit is contained in:
parent
0b3c1b4c79
commit
2c1f5cd310
Notes:
sideshowbarker
2024-07-17 17:47:59 +09:00
Author: https://github.com/Xexxa
Commit: 2c1f5cd310
Pull-request: https://github.com/SerenityOS/serenity/pull/12947
Reviewed-by: https://github.com/linusg ✅
1 changed files with 12 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue