如<a class='hover-red' href="http://www.baidu.com">baidu</a>
css这样写:
a.hover-red:hover{color:red}
需要准备的材料分别有:电脑、浏览器、html编辑器。
1、首先,打开html编辑器,新建html文件,例如:index.html。
2、在index.html中的<style>标签中,输入css代码:a:visited {color: blueviolet}。
3、浏览器运行index.html页面,此时超链接文本单击后的样式被设置了文字紫色颜色。
点击用JS实现:<script>
function disp_alert()
{
alert("我是警告框!!")
}
</script>
<a href="#" onclick="disp_alert()">点击</a>
按下 a:active{color:#f00}
经过:a:hover{color:#000}
不过一般都有顺序的 link,visited,hover,active一般是这样的顺序