标签:
<head> <style type="text/css"> a{ font-family:"宋体"; font-size:12px; color:pink; }设置a标签字体大小颜色形体 a:link{ font-family:"宋体"; font-size:52px; color:black; }设置了link属性,在打开文件(设置a标签字体大小颜色形体【无效果】) a:visited{ font-family:"宋体"; font-size:22px; color:red; }设置visited属性(个人认为还看不到什么效果) a:hover{ font-family:"宋体"; font-size:62px; color:red; }设置hover属性只要跟liak设置的属性不一样就有变化 a:active{ font-family:"宋体"; font-size:12px; color:black; }设置active属性只要跟liak设置的属性不一样就有变化 <style> </head> <body> <a herf="###">我要去湖南 </a> </body>
link到visited到hover到active在css里面设置要从左到右依次右优先级
标签:
原文地址:http://www.cnblogs.com/qq547372511/p/5754566.html