mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 19:27:45 +00:00
LibWeb: Make i, em, address, cite, dfn and var elements italic
Although it is not said that some of the elements need to be italic, *most* browsers mark them as such to distinguish them from the normal text, so let's do that too!
This commit is contained in:
parent
4e50f8a8b7
commit
6a1ae4c185
1 changed files with 9 additions and 0 deletions
|
@ -46,6 +46,15 @@ b {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
i,
|
||||||
|
em,
|
||||||
|
address,
|
||||||
|
cite,
|
||||||
|
dfn,
|
||||||
|
var {
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
html,
|
html,
|
||||||
address,
|
address,
|
||||||
blockquote,
|
blockquote,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue