summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-text-decor/reference/text-decoration-style-multiple-ref.html
blob: f80396930e1bbaf06df7b999cf657cf74af99bc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!doctype 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(1) { text-decoration: underline solid coral; }
    div > span:nth-child(2) { text-decoration: overline dashed skyblue; }
    div > span:nth-child(3) { text-decoration: line-through wavy green; }

</style>
<div><span>AAAA</span><span>AAAA</span><span>AAAA</span></div>