css的派生選擇器
阿新 • • 發佈:2018-12-26
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Insert title here</title> <!-- <link rel="stylesheet" type="text/css" href="span.css"></link> --> <style type="text/css"> div p{ color:red; font-size:20px; } div,p{ color:green; font-size:30px; } /* p{ color:green; } */ a:LINK { text-decoration:none; color:green; } a:HOVER { text-decoration: underline; } a:ACTIVE { color:blue; text-decoration:none; } a:VISITED { text-decoration:none; color:green; } </style> </head> <!-- css 擴充套件選擇器 1、派生選擇器 父標籤 子標籤{ css,, } 2、組合標籤: 選擇器1,選擇器2{ ... } 3、偽元素選擇器 a:link 超聯接的預設樣式 a:hover 滑鼠移動到元素上面的時候的顯示樣式 a:active 滑鼠按下與擡起之間的顯示樣式 a:visited 點選以後的顯示樣式 --> <body> <div >div<p>我是一段檔案</p>標籤</div> <div >div 標籤</div> <span >span標籤</span> <span >span標籤</span> <p>我是一段檔案</p> <a href="01-div標籤.html">點我啊</a> </body> </html>