<!DOCTYPE html>
<html>
<head>
<style>
div.a {
text-decoration-line: underline;
text-decoration-style: solid;
}
div.b {
text-decoration-line: underline;
text-decoration-style: wavy;
}
div.c {
text-decoration-line: underline;
text-decoration-style: double;
}
div.d {
text-decoration-line: overline underline;
text-decoration-style: wavy;
}
</style>
</head>
<body>
<h1>text-decoration-style 属性</h1>
<div class="a">这是一些带有实心下划线的文本。</div>
<br>
<div class="b">这是一些带有波浪下划线的文本。</div>
<br>
<div class="c">这是一些带有双下划线的文本。</div>
<br>
<div class="d">这是一些带有波浪形上划线和下划线的文本。</div>
<p><b>注意:</b> 79 之前的 Edge 不支持 text-decoration-line 属性。</p>
</body>
</html>