mirror of
https://github.com/RGBCube/serenity
synced 2025-10-16 07:22:07 +00:00

This detects and resolves these in the text-decoration property, in any order: - text-decoration-color - text-decoration-line - text-decoration-style Only the solid underline renders, but all three sub-properties are assigned correctly.
18 lines
454 B
HTML
18 lines
454 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>text-decoration test</title>
|
|
<style>
|
|
.overline { text-decoration: wavy blue overline; }
|
|
.underline { text-decoration: double red underline; }
|
|
.strikethrough { text-decoration: dotted green line-through; }
|
|
.blink { text-decoration: blink; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p class="overline">Overline</p>
|
|
<p class="underline">Underline</p>
|
|
<p class="strikethrough">Wombling</p>
|
|
<p class="blink">FREE!</p>
|
|
</body>
|
|
</html>
|