1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 11:37:44 +00:00

LibWeb: Strike-through <s> and <del> elements by default

This commit is contained in:
Karol Kosek 2022-02-20 10:56:27 +01:00 committed by Andreas Kling
parent ed70a67a49
commit 049abbc417

View file

@ -41,6 +41,11 @@ ins {
text-decoration: underline; text-decoration: underline;
} }
s,
del {
text-decoration: line-through;
}
strong, strong,
b { b {
font-weight: bold; font-weight: bold;