1. 程式人生 > >CSS偽類選擇器

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>
<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>

 


應用:表格的內容根據滑鼠指定的行而改變顏色


 


<!
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>