Result Size: 625 x 534
x
 
<!DOCTYPE html>
<html>
<head>
<style>
p {
  text-decoration: underline;
  -webkit-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>