CSS选择器学习笔记
目录
CSS选择器上
通用选择器
- 选择所有元素,使用 *
*{ margin:0px; padding:0px; }
类型选择器
- 1.使用元素类型
- 2.根据类型选择元素
- 3.使用场景:
- 1)想改变某一个元素的默认样式
- 2)统一文档某个元素的显示效果时
- 4.建议:
- 对于div、span等通用元素,不建议使用类型选择器。因为,他们使用广泛,会相互干扰。
类选择器
- 1.根据元素的class属性选择元素
- 2.使用符号 .
- 3.具有相同样式的元素统一为一类。
id选择器
- 1.使用id属性选择元素
- 2.使用符号 #
- 3.使用场景:
- 1)用来构建整体框架的元素应该使用id选择器
- 2)对于模块的外围结构元素最好使用id选择器,内部元素可以定义类(class)选择器.因为,外部元素唯一,内部元素可以重复出现.
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> <style> *{ margin: 0px; padding: 0px; } body{ width:960px; margin: 0px auto; } #header{ width: 960px; height: 120px; border: 1px solid; } #content{ width: 960px; height: 900px; background-color: green; } #left{ width: 800px; height: 900px; background-color: red; float: left; } #sidbar{ float: right; width: 160px; height: 900px; background-color: blue; } #footer{ width: 960px; height: 120px; background-color: grey; } </style> </head> <body> <header id="header"></header> <div id="content"> <div id="left"></div> <div id="sidbar"></div> </div> <footer id="footer"></footer> </body> </html>
属性选择器
- 1.根据属性选择元素
- 2.使用符号[]
分组选择器
- 1.为多个并集元素选择相同的样式
- 2.使用符号,
包含选择器
- 1.选择某个元素包含的后代元素
- 2.使用符号空格
子元素选择器
- 1.选择某个元素的子元素(直接后代,必须是儿子孙子不行)
- 2.使用 >
伪元素选择器:first-line
- 选择首行
伪元素选择器:first-letter
- 选择首字母
伪元素选择器 :before和:after选择器
- 选择内容前后(必须和content属性一起使用)
CSS选择器下
根元素选择器(:root)
:root{ border: 1px solid red; } /* html{ border: 1px solid red; } */
使用子元素选择器(:xx-child)
:first-child{ border: 1px solid green;} :last-child{ border: 1px solid red;} :only-child{ border: 1px solid blue;} :only-of-type{ border: 1px solid orange;}
索引选择器(nth-child)
:nth-child(1){ border: 1px solid orange; } :nth-last-child(1){ border: 1px solid green; }
启用(禁用)某个元素:enabled、disabled
checked
valid、invalid
in-range、out-of-range
required、optional
:link、:visited、:hover
:focus
- 参考《CSS 选择器参考手册》:
选择器 例子 例子描述 .class .intro 选择 class="intro" 的所有元素。 .class1.class2 .name1.name2 选择 class 属性中同时有 name1 和 name2 的所有元素。 .class1 .class2 .name1 .name2 选择作为类名 name1 元素后代的所有类名 name2 元素。 #id #firstname 选择 id="firstname" 的元素。 * * 选择所有元素。 element p 选择所有 <p> 元素。 element.class p.intro 选择 class="intro" 的所有 <p> 元素。 element,element div, p 选择所有 <div> 元素和所有 <p> 元素。 element element div p 选择 <div> 元素内的所有 <p> 元素。 element>element div > p 选择父元素是 <div> 的所有 <p> 元素。 element+element div + p 选择紧跟 <div> 元素的首个 <p> 元素。 element1~element2 p ~ ul 选择前面有 <p> 元素的每个 <ul> 元素。 [attribute] [target] 选择带有 target 属性的所有元素。 [attribute=value] [target=_blank] 选择带有 target="_blank" 属性的所有元素。 [attribute~=value] [title~=flower] 选择 title 属性包含单词 "flower" 的所有元素。 [attribute|=value] [lang|=en] 选择 lang 属性值以 "en" 开头的所有元素。 [attribute^=value] a[href^="https"] 选择其 src 属性值以 "https" 开头的每个 <a> 元素。 [attribute$=value] a[href$=".pdf"] 选择其 src 属性以 ".pdf" 结尾的所有 <a> 元素。 [attribute*=value] a[href*="w3schools"] 选择其 href 属性值中包含 "abc" 子串的每个 <a> 元素。 :active a:active 选择活动链接。 ::after p::after 在每个 <p> 的内容之后插入内容。 ::before p::before 在每个 <p> 的内容之前插入内容。 :checked input:checked 选择每个被选中的 <input> 元素。 :default input:default 选择默认的 <input> 元素。 :disabled input:disabled 选择每个被禁用的 <input> 元素。 :empty p:empty 选择没有子元素的每个 <p> 元素(包括文本节点)。 :enabled input:enabled 选择每个启用的 <input> 元素。 :first-child p:first-child 选择属于父元素的第一个子元素的每个 <p> 元素。 ::first-letter p::first-letter 选择每个 <p> 元素的首字母。 ::first-line p::first-line 选择每个 <p> 元素的首行。 :first-of-type p:first-of-type 选择属于其父元素的首个 <p> 元素的每个 <p> 元素。 :focus input:focus 选择获得焦点的 input 元素。 :fullscreen :fullscreen 选择处于全屏模式的元素。 :hover a:hover 选择鼠标指针位于其上的链接。 :in-range input:in-range 选择其值在指定范围内的 input 元素。 :indeterminate input:indeterminate 选择处于不确定状态的 input 元素。 :invalid input:invalid 选择具有无效值的所有 input 元素。 :lang(language) p:lang(it) 选择 lang 属性等于 "it"(意大利)的每个 <p> 元素。 :last-child p:last-child 选择属于其父元素最后一个子元素每个 <p> 元素。 :last-of-type p:last-of-type 选择属于其父元素的最后 <p> 元素的每个 <p> 元素。 :link a:link 选择所有未访问过的链接。 :not(selector) :not(p) 选择非 <p> 元素的每个元素。 :nth-child(n) p:nth-child(2) 选择属于其父元素的第二个子元素的每个 <p> 元素。 :nth-last-child(n) p:nth-last-child(2) 同上,从最后一个子元素开始计数。 :nth-of-type(n) p:nth-of-type(2) 选择属于其父元素第二个 <p> 元素的每个 <p> 元素。 :nth-last-of-type(n) p:nth-last-of-type(2) 同上,但是从最后一个子元素开始计数。 :only-of-type p:only-of-type 选择属于其父元素唯一的 <p> 元素的每个 <p> 元素。 :only-child p:only-child 选择属于其父元素的唯一子元素的每个 <p> 元素。 :optional input:optional 选择不带 "required" 属性的 input 元素。 :out-of-range input:out-of-range 选择值超出指定范围的 input 元素。 ::placeholder input::placeholder 选择已规定 "placeholder" 属性的 input 元素。 :read-only input:read-only 选择已规定 "readonly" 属性的 input 元素。 :read-write input:read-write 选择未规定 "readonly" 属性的 input 元素。 :required input:required 选择已规定 "required" 属性的 input 元素。 :root :root 选择文档的根元素。 ::selection ::selection 选择用户已选取的元素部分。 :target #news:target 选择当前活动的 #news 元素。 :valid input:valid 选择带有有效值的所有 input 元素。 :visited a:visited 选择所有已访问的链接。