我有一个被称为“番茄”的跨类。
我的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; } }
希望这可以帮助。