| 网页基础-->常用样式表 | 请选择其他网页基础知识: |
| 去掉超链接的下划线 <style TYPE="text/css"> <!-- A:link {text-decoration: none} A:visited {text-decoration: none} --> </style> CSS 文件的格式样例代码: <style type="text/css"> <!— p { text-indent: 2em; } body { font-family: "宋体"; font-size: 9pt; color: #000000; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px} table { font-family: "宋体"; font-size: 9pt; line-height: 20px; color: #000000} a:link { font-size: 9pt; color: #FFFFFF; text-decoration: none} a:visited { font-size: 9pt; color: #99FFFF; text-decoration: none} a:hover { font-size: 9pt; color: #FF9900; text-decoration: none} a:active { font-size: 9pt; color: #FF9900; text-decoration: none} a.1:link { font-size: 9pt; color: #3366cc; text-decoration: none} a.1:visited { font-size: 9pt; color: #3366cc; text-decoration: none} a.1:hover { font-size: 9pt; color: #FF9900; text-decoration: none} a.1:active { font-size: 9pt; color: #FF9922; text-decoration: none} .blue { font-family: "宋体"; font-size: 10.5pt; line-height: 20px; color: #0099FF; letter-spacing: 5em} --> </style> 这里尤其要注意的是a:link a:visited a:hover a:actived 的排列顺序一定要严格照上面的样例代码,否则或多或少会出问题。另外我们规定重定义的最先,伪类其次,自定义最后,便于自己和他人阅读! |