问一个css :hover的基础问题
发布网友
发布时间:2022-04-22 04:39
我来回答
共1个回答
热心网友
时间:2022-04-22 06:08
在CSS里设定.
a:link {
font-size: 12px;
text-decoration: none;
color: #757474;
}
a:visited {
font-size: 12px;
text-decoration: none;
color: #757474;
}
a:hover {
color: #000000;
text-decoration: none;
}
a:active {
font-size: 12px;
color: #757474;
text-decoration: none;
}
如果要几个链接色不一样,可以复制上面的代码..比如:
a.c:link {
font-size: 12px;
text-decoration: none;
color: #ffffff;
}
a.c:visited {
font-size: 12px;
text-decoration: none;
color: #ffffff;
}
a.c:hover {
color: #ffffff;
text-decoration: none;
}
a.c:active {
font-size: 12px;
color: #ffffff;
text-decoration: none;
}
这些都是在CSS里改的追问你说的这些都知道,我需要的效果是鼠标移到div.box上后div.blue显示出来,html结构不能改,不用js