1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:37:35 +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;
}
s,
del {
text-decoration: line-through;
}
strong,
b {
font-weight: bold;