简单的HTML和CSS.
码:
CSS:
.link_my a:hover{
font-weight:bold;
text-decoration:underline;
}
鼠标悬停时,文本字体与ubderline一起变为粗体.但我希望下划线是正常的(不是粗体).
怎么做 ?
最佳答案
这对你有用Istiaque.
JS FIDDLE LINK:http://jsfiddle.net/39TtM/
HTML:
CSS:
.link span{
color:blue;
font-size:30px;
}
.link:hover span{
font-weight:bold;
}
.link:hover{
text-decoration:underline;
}
原文链接:https://www.f2er.com/html/426405.html