x
 
1
<!DOCTYPE html>
2
<title>My Example</title>
3
<style>
4
    .over {
5
        text-decoration: overline;
6
    }
7
    .under {
8
        text-decoration: underline;
9
    }
10
    .through {
11
        text-decoration: line-through;
12
    }
13
    p {
14
        font-size: 5vw;
15
    }
16
</style>
17
18
<p class="over">Some random text to demonstrate the effect.</p>
19
<p class="under">Some random text to demonstrate the effect.</p>
20
<p class="through">Some random text to demonstrate the effect.</p>