1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:07:35 +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:
Karol Kosek 2022-02-19 21:21:54 +01:00 committed by Andreas Kling
parent 4e50f8a8b7
commit 6a1ae4c185

View file

@ -46,6 +46,15 @@ b {
font-weight: bold;
}
i,
em,
address,
cite,
dfn,
var {
font-style: italic;
}
html,
address,
blockquote,