css伪类:“:active”、“:any-link”、“:blank”、“:checked”、“:current”、“:first”、“:first-child”、“:future”、“:focus”、“:has()”、“:host”等。
本教程操作环境:windows7系统、css3版、dell g3电脑。
伪类选择器(简称:伪类)通过冒号来定义,它定义了元素的状态,如点击按下,点击完成等,通过伪类可以为元素的状态修改样式。css伪类是用来添加一些选择器的特殊效果。
css中的伪类列表
:active :any-link :blank :checked :current :default
:defined :dir() :disabled :drop :empty :enabled
:first :first-child :first-of-type :fullscreen :future :focus
:focus-visible :focus-within :has() :host :host() :host-context()
:hover :indeterminate :in-range:invalid :is() :lang() :last-child
:last-of-type :left :link :local-link :not() :nth-child()
:nth-col() :nth-last-child() :nth-last-col() :nth-last-of-type() :nth-of-type() :only-child
:only-of-type :optional :out-of-range :past :placeholder-shown :read-only
:read-write :required :right :root :scope :target
:target-within :user-invalid :valid :visited :where()
常用的伪类及其分类
1、动态伪类选择器
不同的状态,使用不同的样式。
e:link
e:visited
e:active
e:hover
e:focus
2、目标伪类选择器
用来匹配页面的uri中某个标识符的目标元素。
e:target
选择匹配e的所有元素,且匹配元素被相关url指向。
3、语言伪类选择器
用来匹配使用指定语言的元素。
e:lang(language)
4、元素状态伪类选择器
当元素处于某种状态下时,才起作用,在默认状态下不起作用。
e:checked
eg:
input[type="checkbox"]:checked{}
e:enabled
eg:
input[type="text"]:checked{}
e:disabled
eg:
input[type="text"]:disabled{}
5、结构伪类选择器
这个就比较多了,平时用的也比较频繁。
:nth-child
:nth-last-child
:nth-of-type
:nth-last-of-type
:first-child
:last-child
:only-child
:first-of-type
:last-of-type
:only-of-type
:root 匹配元素所有在文档的根元素
:empty 选择没有子元素的元素,且不包含节点
6、否定伪类选择器
e:not(f) 匹配所有除f外的e元素
(学习视频分享:css视频教程)
以上就是css中的伪类有哪些的详细内容。