Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<html lang=en>
<meta charset="utf-8">
<title>Decoration skipping spaces: all value skips interior spaces</title>
<meta name="assert" content="text-decoration-skip-spaces:all skips spaces at all positions including between words, unlike start end which only skips at line edges.">
<link rel="author" title="Perry Wang" href="mailto:perryuwang@gmail.com">
<link rel="match" href="reference/text-decoration-skip-spaces-007-ref.html">
<meta name="fuzzy" content="maxDifference=0-255;totalPixels=0-15">
<style>
div {
text-decoration: underline;
text-decoration-color: blue;
text-decoration-skip-spaces: all;
color: orange;
font-size: 2em;
white-space: pre;
}
</style>
<p>Test passes if this page renders the same as the reference page (underline only under AB, CDE, FG — not under the spaces between them).
<div>AB CDE FG</div>