1. 链接默认样式
a {
color: #0077cc; /* 设置链接文本颜色 */
text-decoration: none; /* 移除默认的下划线 */
}
a:hover {
text-decoration: underline; /* 鼠标悬停时显示下划线 */
}
2. 链接状态样式
a:visited {
color: # purple; /* 已访问链接的颜色 */
}
a:active {
color: #ff4500; /* 点击链接时的颜色 */
}
3. 取消链接样式
有时候,你可能希望取消链接的默认样式。
a {
color: inherit; /* 使用父元素的文本颜色 */
text-decoration: none;
}
a:hover {
text-decoration: none; /* 不显示下划线 */
}
4. 自定义链接样式
你可以根据自己的设计需求自定义链接样式。
a {
color: #4caf50;
text-decoration: none;
font-weight: bold;
}
a:hover {
text-decoration: underline;
color: #45a049;
}
5. 设置链接为块级元素
如果你希望链接占据整个父元素的宽度,可以将其设置为块级元素。
a {
display: block;
padding: 10px;
background-color: #0077cc;
color: #fff;
text-decoration: none;
}
a:hover {
background-color: #005b99;
}
这些只是一些常见的链接样式设置,你可以根据具体项目的设计要求来调整链接的颜色、字体、背景等样式。深入学习伪类和其他 CSS 属性将使你能够更灵活地定制链接的外观。
转载请注明出处:http://www.zyzy.cn/article/detail/3998/CSS