超链接,点击,css效果因为鼠标移动到链接上,点击链接后,字体颜色大小都会变化,所以不贴图了,直接上代码:
特别要注意的是:清除浏览器缓存测试!
还有css中link,hover,visited顺序注意一下!
linkhovervisited.html
<html> <head> <link rel="stylesheet" type="text/css" href="css1.css"/> </head> <body> <a href="http://www.sohu.com" target="_blank">百度</a> <a href="#"><img src="2.png"/></a> <a href="#"><img src="3.png"/></a> </body> </html> css1.css a:link{ color:red; text-decoration:none; font-size:30px; } a:visited{ color:green; } a:hover{ color:yellow; text-decoration:underline; font-size:50px; }
超链接,点击,css效果
|