https://github.com/web-platform-tests/wpt
Raw File
Tip revision: c4742caa9ad8c4b4a00ded7c4dac2a1e1563cb4b authored by L. David Baron on 02 April 2018, 19:01:11 UTC
Sync Mozilla tests as of https://hg.mozilla.org/mozilla-central/rev/c44f60c43432d468639b5fe078420e60c13fd3de .
Tip revision: c4742ca
text-decoration-style-multiple.html
<!doctype html>
<link rel="help" href="https://www.w3.org/TR/css-text-decor-3/#text-decoration-style">
<link rel="match" href="reference/text-decoration-style-multiple-ref.html">
<style>
    div {
        color: #aaa;
        font-size: 50px;
        position: relative;
        display: inline-block;
        width: 200px;
        height: 200px;
    }

    div > span { position: absolute; }

    div > span:nth-child(3) { text-decoration: underline solid coral; }
    div > span:nth-child(3) > span { text-decoration: overline dashed skyblue; }
    div > span:nth-child(3) > span  > span { text-decoration: line-through wavy green; }

</style>
<div><span>AAAA</span><span>AAAA</span><span><span><span>AAAA</span></span></span></div>
back to top