更改所有链接状态相同的颜色css

前端之家收集整理的这篇文章主要介绍了更改所有链接状态相同的颜色css前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个被称为“番茄”的跨类。

我的css是:

.tomato a:link {color:#FF0000;}      /* unvisited link */
.tomato a:visited {color:#FF0000;}  /* visited link */
.tomato a:hover {color:#FF0000;}  /* mouse over link */
.tomato a:active {color:#FF0000;}  /* selected link */

有没有办法将所有这些组合成一个较小的代码? (我希望所有州的链接都是红色的)

解决方法

这是最短的,我不认为你可以做的比任何短:
.tomato a:link,.tomato a:visited,.tomato a:hover,.tomato a:active { color:#FF0000; }

要么

.tomato { a:link,a:visited,a:hover,a:active { color:#FF00000; } }

希望这可以帮助。

原文链接:https://www.f2er.com/css/219190.html

猜你在找的CSS相关文章