<html>
<head>
<style>
p {
text-decoration: underline;
text-decoration-color: red; /* Safari */
text-decoration-color: red;
}
</style>
</head>
<body>
<h1>text-decoration-color 属性</h1>
<p>现在,下划线的颜色应该是红色!</p>
<p><b>注释:</b>版本 79 之前的 Edge 不支持 text-decoration-color 属性。</p>
</body>
</html>