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

How to specify the background color of a link

Example analysis:

##a:link {background-color:#B2FF99;} /* Unvisited link*/

a:visited {background-color:#FFFF85;} /* Visited link*/

a:hover {background-color:#FF704D; } /* Move the mouse to the link*/

a:active {background-color:#FF704D;} /* When the mouse is clicked*/

Use the background-color attribute to set different background colors in different states of the link.

Continuing Learning
||
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文網(wǎng)(php.cn)</title> <style> a:link {background-color:#B2FF99;} /* 未訪問鏈接 */ a:visited {background-color:#FFFF85;} /* 已訪問鏈接 */ a:hover {background-color:#FF704D;} /* 鼠標(biāo)移動到鏈接上 */ a:active {background-color:#FF704D;} /* 鼠標(biāo)點(diǎn)擊時 */ </style> </head> <body> <p><b><a href="#">這是一個鏈接</a></b></p> <p><b>注意:</b> hover必須在:link和 a:visited之后定義才有效.</p> <p><b>注意:</b>active必須在hover之后定義是有效的.</p> </body> </html>
submitReset Code