对于我的菜单,我希望在移动链接时使链接变为粗体和下划线。
我刚刚发现了如何改变颜色以及如何使颜色更大。
将其加粗和加下划线的语法是什么?
答案 0 :(得分:3)
您需要使用:hover
选择器
a:hover {
font-weight: bold;
text-decoration: underline;
}
答案 1 :(得分:1)
定位hover
上的a
州或如果您想要定位特定链接,请添加class
a:hover{
font-weight: bold;
text-decoration: underline;
}
答案 2 :(得分:0)
此代码显示所有链接
a:hover {
font-weight: bold;
text-decoration: underline;
}
如果您只想要菜单,请使用此
#menu li a:hover {
font-weight: bold;
text-decoration: underline;
}