<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><strong>注意:</strong> 79 之前的 Edge 不支持 text-decoration-color 属性。</p>
</body>
</html>