更改下划线颜色:分离文本和下划线色调
为了在将下划线颜色更改为黑色的同时保持红色文本颜色,让我们探索利用新颖的 CSS3 属性的解决方案:text-decoration-color。
通过此属性,我们可以为文本本身和下划线装饰分配不同的颜色,从而无需额外的包装元素。这是更新的代码片段:
p { text-decoration: underline; -webkit-text-decoration-color: red; /* Safari still uses a vendor prefix */ text-decoration-color: red; }
<p>Black text with red underline in one element - no wrapper elements here!</p>
通过利用 text-decoration-color 属性,我们可以在不牺牲红色文本颜色的情况下实现黑色下划线文本的预期效果。
以上是如何在保持文本颜色相同的情况下更改下划线颜色?的详细内容。更多信息请关注PHP中文网其他相关文章!