Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-text-decor/text-decoration-trim-013.html - WPT Dashboard Interop Dashboard
<!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-013-ref.html">
<style>
body {
background: white;
color: black;
}
div {
position: relative;
width: 10em;
height: 20em;
writing-mode: sideways-lr;
}
h1 {
position: absolute;
}
u {
text-decoration-color: black;
text-decoration-trim: 10px -10px;
}
</style>
<p>The underline for "brown" should be offset by 10px upwards:</p>
<div>
<h1>
the quick <u>brown</u> fox
</h1>
</div>