主题
超链接样式设置
css
/* 全局链接样式 */
a {
color: #0066cc;
text-decoration: none; /* 去掉下划线 */
}
/* 鼠标悬停/按下/访问过/获得焦点 的样式(顺序很重要) */
a:link {
/* 未访问链接(可选) */
}
/* 访问过后的颜色(受浏览器限制) */
a:visited {
color: #551a8b;
}
/* 悬停显示下划线 */
a:hover {
color: #004499;
text-decoration: underline;
}
/* 激活时(点击时) */
a:active {
color: #002244;
}
/* 键盘聚焦,利于无障碍 */
a:focus {
outline: 2px dashed #3399ff;
outline-offset: 2px;
}