Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<meta charset="UTF-8">
<title>text-underline-offset calc() support</title>
<link rel="author" title="Zak Ridouh" href="mailto:zakr@apple.com" />
<style>
div {
display: flex;
font-size: 22px;
}
.underline {
text-decoration-color: green;
text-decoration-line: underline;
text-decoration-thickness: 15px;
text-decoration-skip-ink: none;
}
.ref {
text-underline-offset: 1em;
}
</style>
<p>Test passes if black and green bar pairs are the same shape and size.</p>
<div>
<span class="underline ref">XXXXXX</span>
</div>