<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <style type="text/css"> /* 僞類選擇器:僞類選擇器就是對元素處於某種狀態下進行樣式的。 注意: 1. a:hover 必須被置於 a:link 和 a:visited 以後 2. a:active 必須被置於 a:hover 以後 */ a:link{color:#F00} /* 沒有被點擊過---紅色 */ a:visited{color:#0F0} /* 已經被訪問過的樣式---綠色 */ a:hover{color:#00F;} /* 鼠標通過的狀態---藍 */ a:active{color:#FF0;} </style> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>無標題文檔</title> </head> <body> <a href="#">百度</a> </body> </html>
僞類選擇器案例:css
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>無標題文檔</title> </head> <style type="text/css" > table{ background-color:#CCC;//設置背景色 border-collapse:collapse;//設置邊框合併 border:3px; } tr:hover{//鼠標通過變色 background-color:#06F; } </style> <body> <table border="1px" width="400px" height="300px" align="center" > <tr> <th>姓名</th> <th>成績</th> <th>人品</th> </tr> <tr> <td>張三</td> <td>98</td> <td>差</td> </tr> <tr> <td>李四</td> <td>50</td> <td>極好</td> </tr> <tr> <td>綜合測評</td> <td colspan="2">不錯</td> </tr> </table> </body> </html>