HTML颜色、超链接设置

时间:2023-12-19 22:33:02
<html>
<head>
<title>显示的页面选项卡标题</title>
<style type="text/css">
a{
text-decoration:none;
}/*去掉下划线*/
a:hover{
 text-decoration:underline;  /*鼠标放上去有下划线*/
}
a{ color:#00F}
a:hover{ color:#F00}/* 鼠标经过悬停字体颜色 */
/* css 注释说明:以上代码为设置html中超链接统一字体颜色 */
.div a{ color:#090}
.div a:hover{ color:#F00}
/* css注释说明:以上代码为设置html中.div对象内超链接字体颜色
</style>
</head>
<body>
<p>测试内容我是统一设置的颜色蓝色<strong><a href="http://www.divcss5.com">DIVCSS5</a></strong></p>
<div class="div">我在div对象内,超链接颜色为<a href="#"><strong>我是超链接绿色</strong></a></div>
</body>
</html>

上面是代码部分:

下面是显示图片部分:

  HTML颜色、超链接设置

===============================