Dreamweaver中如何制作鼠标经过导航栏文字变色
发布网友
发布时间:2022-04-26 04:03
我来回答
共3个回答
热心网友
时间:2022-04-25 04:46
在你的网页的head标签里加入这段代码
<style type="text/css">
<!--
body{font-size: 12px;}
a{color: #0F0; text-decoration: none; }
a:hover {color: #F00; text-decoration: none; }
-->
</style>
a是指<a></a>这段标签
:hover是鼠标经过时的状态
这是css,如果还有问题可以直接问我
热心网友
时间:2022-04-25 06:04
添加css样式表
a { color: #00f; text-decoration: none; }
a:hover { color: #f00; }
热心网友
时间:2022-04-25 07:39
<style type="text/css">
<!--
a:link {
font-size: 12px;
color: #FF0000;
text-decoration: none;
}
a:visited {
font-size: 12px;
color: #CCCCCC;
text-decoration: none;
}
a:hover {
font-size: 12px;
color: #00CC33;
text-decoration: none;
}
a:hover {
font-size: 12px;
color: #FF9900;
text-decoration: none;
}
-->
</style>
COLOR改变颜色