-
翻过高山走不出你
<style type="text/css"> <!-- a:link { text-decoration: none;color: blue} a:active { text-decoration:blink} a:hover { text-decoration:underline;color: red} a:visited { text-decoration: none;color: green} --> </style> 其中: a:link 指正常的未被访问过的链接; a:active 指正在点的链接; a:hover 指鼠标在链接上; a:visited 指已经访问过的链接; text-decoration是文字修饰效果的意思; none参数表示超链接文字不显示下划线; underline参数表示超链接的文字有下划线
-
狐的传说
HTML中可以用CCS样式来控制鼠标经过超链时变色。可以文字变色也可使层的背景变色。具体例子:1,使文字变色,新建一个ID为abc的DIV 在里 在DIV写入文字(任意文字)同时建立一个空连接 代码如下:1<div id="abc"><a href="#">文字</a></div>同时 定义文字的CSS样式(文字为黑色宋体) 代码如下:12345678<style type="text/css"><!--#abc { font-family: "宋体"; color: #000000;}--></style>再定义 鼠标经过时 文字的颜色 (文字为宋体 红色)代码变为:123456789101112<style type="text/css"><!--#abc { font-family: "宋体"; color: #000000;}#abc a:hover { font-family: "宋体"; color: #FF0000;}--></style>2,使背景色变色,在示例1中的DIV 定义它为高度 宽度分别为50px; 背景为灰色 同时a标签也定义高度 宽度分别为50px;的块代码如下:123456789101112131415161718192021<style type="text/css"><!--#abc { font-family: "宋体"; color: #000000; background-color: #CCCCCC; height: 50px; width: 50px;}#abc a:hover { font-family: "宋体"; color: #FF0000;}#abc a { background-color: #CCCCCC; display: block; height: 50px; width: 50px;}--></style>再定义鼠标经过时变动的颜色(颜色为蓝色) 代码如下:12345678910111213141516171819202122<style type="text/css"><!--#abc { font-family: "宋体"; color: #000000; background-color: #CCCCCC; height: 50px; width: 50px;}#abc a:hover { font-family: "宋体"; color: #FF0000; background-color: #0066FF;}#abc a { background-color: #CCCCCC; display: block; height: 50px; width: 50px;}--></style>
-
慕田峪4524236
<style>a:hover{color:这里写你要的颜色}</style>