html超鏈接樣式
『壹』 怎麼設置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>