summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-text-decor/text-decoration-underline-position-horizontal.html
blob: e4d495e722e43414e562c315c530c285d7bc6356 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE HTML>
<html>
<head>
    <meta charset="utf-8">
    <link rel="help" href="https://www.w3.org/TR/css-text-decor-3/#text-underline-position-property">
    <link rel="match" href="reference/text-decoration-underline-position-horizontal-ref.html">
    <style>
        .underline { text-decoration: underline; }
        .overline { text-decoration: overline; }
    </style>
</head>
<body lang="en">
    <div class="overline" style="text-underline-position: under right">サンプル</div>
    <div class="overline" style="text-underline-position: under left">サンプル</div>
    <div class="underline" style="text-underline-position: right">"text-underline-position: right" alone should be same as "auto right"</div>
    <div class="underline" style="text-underline-position: left">"text-underline-position: left" alone should be same as "auto left"</div>
</body>
</html>