html中如何使超级链接变颜色行内样式
发布网友
发布时间:2022-03-26 11:20
我来回答
共3个回答
热心网友
时间:2022-03-26 12:49
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>无标题文档</title>
<style>
/*
link 未访问(默认)
hover 鼠标悬停(鼠标划过)
active 链接激活(鼠标按下)
visited 访问过后(点击过后)
IE6不支持a以外其它任何标签的伪类;
IE6以上的浏览器支持所有标签的hover伪类;
*/
a:link{ font-size:60px; text-decoration:none; color:green;}
a:visited{color:black;}
a:hover{color:red; text-decoration:underline;}
a:active{color:yellow;}
/*必须按照访问先后顺序写,否则不可以持续触发首先是link visted hover active*/
div{height:100px; background:blue;}
div:hover{background:red;}
</style>
</head>
<body>
<a href="#">a标签(链接,下载,锚点)</a>
<div></div>
</body>
</html>
热心网友
时间:2022-03-26 14:07
利用CSS样式 a{color:red}
热心网友
时间:2022-03-26 15:42
用CSS样式呗。主要是link、hover、active、visited这几个