关于超链接伪类的使用,:link,:visited,:hover
2015-08-21 20:54 怡红院丿无痕 阅读(529) 评论(0) 编辑 收藏 举报/* 伪类的基本用法*/
* { margin: 0px; padding: 0px; } /** * 默认情况的超链接 */ a:link, a:visited { text-decoration: none; font-size: 12px; color: #226; background: red; } /** * 当连接点击之后的效果,对于IE,不会自动继承a:link的效果, * 所以为了满足IE浏览器的效果,最好在a:link,a:visited */ a:visited { color: red; } /** * 鼠标移动上来的效果 */ a:hover { color: #496F1F; text-decoration: underline; background: #496F1F; }
怎么在a标签中加了类的情况下,在来访问这个累下的伪类
html代码