Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Text Decoration 4: text-decoration-trim</title>
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
<link rel="match" href="reference/text-decoration-trim-014-ref.html">
<style>
body {
background: white;
color: black;
}
div {
position: relative;
}
h1 {
position: absolute;
font-family: monospace;
width: 16ch;
}
u {
text-decoration-color: black;
text-decoration-trim: -0.5ch;
box-decoration-break: clone;
}
</style>
<p>The underline for "ultra-quick brown" should be extended by 0.5ch at each end of each fragment:</p>
<div>
<h1>
the <u>ultra-quick brown</u> fox
</h1>
</div>