知識社群登入
CSS selector
by 蘇德宙, 2012-06-19 21:48, 人氣(1479)
基礎


子選擇器 >
p > a  // <p> 下的「直接」子元素 a


屬性選擇器 []
a[href^='http://']  // href 開頭為 http:// 的 a 
a[href$='.pdf']     // 結尾為 .pdf
a[href*='jquery']   // 有出現 jquery
input[type='text']  // type 是 text 的 input
div[title]          // 有 title 屬性者
div[title^='my']    // title 開頭為 my 的 div


位置選擇 : (pseudo-class, filter)
a:first
a:odd
li:last-child


:not()