当然可以做到。
CSS中你定义链接样式的类,然后分别调用就行了。举个例子:
a:hover { font-family: "Times New Roman", "Times", "serif"; font-size: 12px; color: #CC0000}
a.btn:hover { font-family: "Times New Roman", "Times", "serif"; font-size: 12px; color: #FF9900}
a.news:hover { font-family: "Times New Roman", "Times", "serif"; font-size: 12px; color: #FFCC00}
其中的"btn"、"news"就是类名
网页中调用时只要
URL就可以调用了。
...Not...Me...Not...I...