<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> /*默認的狀態*/ a:link{ color: red; } /*訪問以後的狀態*/ a:visited{ color: green; } /*鼠標放在連接上面的狀態*/ a:hover{ color: yellow; } /*連接激活的狀態*/ a:active{ color: orange; } </style> </head> <body> <a href="#">AAAAA</a> </body> </html>
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> /*默認的狀態*/ a:link{ color: red; text-decoration: none; } </style> </head> <body> <a href="#">AAAAA</a> </body> </html>
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> .box{ width: 300px; height: 500px; background-color: #999; background-image: url("1.jpg"); background-repeat: no-repeat; background-position: center; background-attachment: fixed; background: red url("1.jpg") no-repeat bottom scroll; } </style> </head> <body> <div class="box"> <p>AAAAA</p> <p>AAAAA</p> <p>AAAAA</p> <p>AAAAA</p> <p>AAAAA</p> <p>AAAAA</p> <p>AAAAA</p> <p>AAAAA</p> <p>AAAAA</p> <p>AAAAA</p> <p>AAAAA</p> <p>AAAAA</p> <p>AAAAA</p> <p>AAAAA</p> <p>AAAAA</p> <p>AAAAA</p> <p>AAAAA</p> <p>AAAAA</p> <p>AAAAA</p> <p>AAAAA</p> <p>AAAAA</p> <p>AAAAA</p> <p>AAAAA</p> <p>AAAAA</p> <p>AAAAA</p> <p>AAAAA</p> <p>AAAAA</p> <p>AAAAA</p> <p>AAAAA</p> </div> </body> </html>