『壹』 怎么设置html中的超链接颜色

可以使用A标签,实例:
<a
style="
color:Gray;">1</a>
<a
style="
color:Fuchsia;">2</a>
<a
style="
color:Aqua;">3</a>
现实使用中更多是使用CSS+DIV的
定义链接样式CSS为一些特殊效果准备了特定的工具,我们称之为“伪类”。其中有几项是我们经常用到的,下面我们就详细介绍一下经常用于定义链接样式的四个伪类,它们分别是::link:visited:hover:active因为我们要定义链接样式,所以其中必不可少的就是超级链接中的锚标签--a,锚标签和伪类链接起来书写的方法就是定义链接样式的基础方法,它们的写法如下:a:link,定义正常链接的样式;a:visited,定义已访问过链接的样式;a:hover,定义鼠标悬浮在链接上时的样式;a:active,定义鼠标点击链接时的样式。示例:a:link{color:#FF0000;text-decoration:underline;}a:visited{color:#00FF00;text-decoration:none;}a:hover{color:#000000;text-decoration:none;}a:active{color:#FFFFFF;text-decoration:none;}上面示例中定义的链接颜色是红色,访问过后的链接是绿色,鼠标悬浮在链接上时是黑色,点击时的颜色是白色。如果正常链接和已访问过的链接样式相同,鼠标悬浮和点击时的样式相同,也可以将它们合并起来定义:a:link,a:visited{color:#FF0000;text-decoration:underline;}a:hover,a:active{color:#000000;text-decoration:none;}链接定义的顺序没有规矩不成方圆,虽然链接定义写好了,但它也是有规则的,如果这四项的书写顺序稍有差错,链接的效果可能就没有了,所以每次定义链接样式时务必确认定义的顺序,link--visited--hover-active,也就是我们常说到的LoVeHAte原则(大写字母就是它们的首字母)。定义局部链接样式在CSS中写上a:link{}这样的定义会使整个页面的链接样式改变,但有些局部链接需要特殊化,这个问题也不难解决,只要在链接样式定义的前面加上指定的id或class就可以了。

『贰』 HTML语言怎么设置不同样式的超链接

伪类:
A.a1:link {color: #4A5C6C;text-decoration: none;}
A.a1:visited {color: #4A5C6C;text-decoration: none;}
A.a1:active {color: #222222;text-decoration: none;}
A.a1:hover {color: #000000;text-decoration: none;}
A.a2:link {color: #000000;text-decoration: none;}
A.a2:visited {color: #000000;text-decoration: none;}
A.a2:active {color: #000000;text-decoration: none;}
A.a2:hover {color: #336699;text-decoration: none;}

引用:
<a href="#" class="a1"></a><a href="#" class="a2"></a>
你想设置多少种版都可以权!

『叁』 html的超链接A样式写法

直接定义a不行吗?
a:link {color: blue} /* 未被访问的链接 蓝色 */
a:visited {color: blue} /* 已被访问过的链接 蓝色 */
a:hover {color: blue} /* 鼠标悬专浮在属上的链接 蓝色 */
a:active {color: blue} /* 鼠标点中激活链接 蓝色 */
非要加类的话:
.div1 a:link, .div2 a:link {color: blue} /* 未被访问的链接 蓝色 */
.div1 a:visited , .div2 a:visited {color: blue} /* 已被访问过的链接 蓝色 */
.div1 a:hover, .div2 a:hover {color: blue} /* 鼠标悬浮在上的链接 蓝色 */
.div1 a:active , .div2 a:active {color: blue} /* 鼠标点中激活链接 蓝色 */

『肆』 HTML超链接代码

HTML使用定义锚<a>创造链接,可用于文本,图片,HTML元素……
一,将文本作为超链接
<a
href="链接地址">文本</a>
二,将图专像作为超链接
<a
href="链接地址"><img
border="0"
src="图像地址"/></a>
三,将书签作为超链接
<a
name="tips">(在网页上显示的)书签文本</a>

在同文档中创建指向该锚的链接。
<a
href="#tips">文本</a>

在其他页面创建指向该锚的链接。
<a
href="链接地址#tips">文本</a>
注:tips可以改成任意值。
用#符号添加到链接地址的末端,就可以直接链属接到tips这个命名了。
其他更多细分的就不说了,大致使用上就这几个

『伍』 html超链接的写法

html超链接的写法是使用a标签,如:<a href="//www..com">网络一下,你就知道</a>。

在html中,a标签中的a(或者 A) 是 anchor 的缩写 。anchor的基本解释是锚,这些标签的作用是标明超连接的起始位置或目的位置。

<a> 标签可定义锚,通过使用 href 属性。创建指向另外一个文档的链接(或超链接)通过使用 name 或 id 属性,创建一个文档内部的书签。<a> 元素最重要的属性是href属性,它指定目标链接。

在所有浏览器中,链接的默认外观是,未被访问的链接带有下划线而且是蓝色的,已被访问的链接带有下划线而且是紫色的,活动链接带有下划线而且是红色的。

(5)html超链接样式扩展阅读:

Html中a标签伪类:

1、a:link {color: #FF0000}

未访问的链接样式。

2、a:visited {color: #00FF00}

已访问的链接样式。

3、a:hover {color: #FF00FF}

当有鼠标悬停在链接样式。

4、a:active {color: #0000FF}

被选择的链接样式。

『陆』 HTML语言怎么设置不同样式的超链接

伪类:
A.a1:link {color: #4A5C6C;text-decoration: none;}
A.a1:visited {color: #4A5C6C;text-decoration: none;}
A.a1:active {color: #222222;text-decoration: none;}
A.a1:hover {color: #000000;text-decoration: none;}
A.a2:link {color: #000000;text-decoration: none;}
A.a2:visited {color: #000000;text-decoration: none;}
A.a2:active {color: #000000;text-decoration: none;}
A.a2:hover {color: #336699;text-decoration: none;}

引用:
<a href="#" class="a1"></a><a href="#" class="a2"></a>
你想设置多少种都内可以容!

『柒』 html 文字超链接样式

a:link {color: #fff} /* 未被访问的链接白色 */

a:visited {color: #f00} /* 已被访问过内的链接 红色 */

a:hover {color: #00f} /* 鼠标悬浮在上的容链接 蓝色 */

『捌』 HTML超链接怎么写

HTML超链接可以用a标签来设置。

1、新建html文档,在body标签中添加a标签,为a标签添加“href”属专性:

『玖』 html中如何使超级链接变颜色行内样式

<!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>

『拾』 html中局部超链接样式设置怎么弄

<style type="text/css">
<!--默认页面链接->
a:link { color: #CC3399; text-decoration: none}
a:visited { color: #FF3399; text-decoration: none}
a:hover { color: #800080; text-decoration: none}
a:active { color: #800080; text-decoration: none}

<!--自定义链接样式2-->
a.two:link { color: #CC99CC; text-decoration: none}
a.two:visited { color: #FF0000; text-decoration: none}
a.two:hover { color: #606060; text-decoration: none}
a.two:active { color: #606060; text-decoration: none}

<!--自定义链接样式3-->
a.three:link { color: #00FFFF; text-decoration: none}
a.three:visited { color: #00FFFF; text-decoration: none}
a.three:hover { color: #FF3399; text-decoration: none}
a.three:active { color: #FF3399; text-decoration: none}

<!--自定义链接样式4-->
div.div a:link { color: #004000; text-decoration: none}
div.div a:visited { color: #00FFFF; text-decoration: none}
div.div a:hover { color: #008000; text-decoration: none}
div.div a:active { color: #008000; text-decoration: none}
-->
</style>