国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

How to add additional styles to hyperlinks

Example analysis:

● Set different font colors for links in different states.

a.one:link {color:#ff0000;}

a.one:visited {color:#0000ff;}

a.one:hover {color:#ffcc00;}

##● Set different font sizes and colors for links in different states .

a.two:link {color:#ff0000;}

a.two:visited {color:#0000ff;}

a.two:hover {font-size:150%;}

##● Set different background colors for links in different states .

a.three:link {color:#ff0000;}

a.three:visited {background:#0000ff;}

a.three:hover {background:#66ff66;}

● Set different font styles or font colors for links in different states .

a.four:link {color:#ff0000;}

a.four:visited {color:#0000ff;}

a.four:hover {font-family:Georgia, serif;}

● The link displays or removes the underline in different states.

a.five:link {color:#ff0000;text-decoration:none;}

a.five:visited {color: #0000ff;text-decoration:none;}

##a.five:hover {text-decoration:underline;color:coral;}

Continuing Learning
||
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文網(wǎng)(php.cn)</title> <style> a.one:link {color:#ff0000;} a.one:visited {color:#0000ff;} a.one:hover {color:#ffcc00;} a.two:link {color:#ff0000;} a.two:visited {color:#0000ff;font-size:50px;} a.two:hover {color:pink;font-size:150%;} a.three:link {color:#ff0000;} a.three:visited {background:#0000ff;} a.three:hover {background:#66ff66;} a.four:link {color:#ff0000;} a.four:visited {color:#0000ff;} a.four:hover {font-family:Georgia, serif;} a.five:link {color:#ff0000;text-decoration:none;} a.five:visited {color:#0000ff;text-decoration:none;} a.five:hover {text-decoration:underline;color:coral;} </style> </head> <body> <p>將鼠標移至鏈接上改變樣式.</p> <p><b><a class="one" href="#">這個鏈接改變顏色</a></b></p> <p><b><a class="two" href="#">這個鏈接改變字體大小</a></b></p> <p><b><a class="three" href="#">這個鏈接改變背景顏色</a></b></p> <p><b><a class="four" href="#">這個鏈接改變字體類型</a></b></p> <p><b><a class="five" href="#">這個鏈接改變文字修飾</a></b></p> </body> </html>
submitReset Code