常用标签
a
a
a:link
: 未访问a:visited
: 已访问a:hover
: 悬浮a:active
: 活动链接
@import './color.scss';
.style-a {
color: $font-color-blue;
font-size: .8rem;
padding: .1rem .2rem;
text-decoration: none;
&-multi {
margin-right: .3rem;
}
&:hover {
text-decoration: none;
background-color: $font-color-blue;
color: white;
border-radius: .2rem;
}
}
最后更新于
这有帮助吗?