::first-line匹配本元素第一个行 ::marker匹配一个 list 的元素的 marker,比如列表前面的数字序号和小圆点。 ::placeholder匹配输入框的 placeholder 文本 ::selection表示元素中被用户框选的部分 其他 ::part后接字符串,匹配 shadow tree 中满足part条件的元素 ::file-selector-button代表一个文件提交按钮 ::cue...
CSS selector: `:first-of-type` Global usage 97.12% + 0% = 97.12% IE ❌ 6 - 8: Not supported ✅ 9 - 10: Supported ✅ 11: Supported Edge ✅ 12 - 130: Supported ✅ 131: Supported Firefox ❌ 2 - 3: Not supported ✅ 3.5 - 132: Supported ✅ 133: Supported ✅ 134...
selector::pseudo-element { property: value; } p::first-line { color: #ff0000; } h1::before { content: '♥'; } 3、常用伪元素选择器 伪元素选择器并不是针对真正的元素使用的选择器,而是针对CSS中已经定义好的伪元素使用的选择器,CSS中有如下四种常用伪元素选择器:first-line、 first-letter、 ...
首类型元素选择器(First of Type Selector) task20 html20 答案:apple:first-of-type 第二十一关 第n个类型元素选择器(Nth of Type Selector) task21 html21 答案:nth-of-type(even) 第二十二关 第f(n)个类型元素选择器(Nth-of-type Selector with Formula) task22 html22 答案:nth-of-type(2n+3) ...
:first-of-typep:first-of-type选择的每个 p 元素是其父元素的第一个 p 元素 :in-rangeinput:in-range选择元素指定范围内的值 :invalidinput:invalid选择所有无效的元素 :last-childp:last-child选择所有p元素的最后一个子元素 :last-of-typep:last-of-type选择每个p元素是其母元素的最后一个p元素 ...
The :first-of-type CSS pseudo-class represents the first element of its type among a group of sibling elements.
`:last-of-type`选择器用于选择同类型元素中的最后一个。它的对立面是`:first-of-type`选择器,这个选择器用于选择同类型元素中的第一个。 ### 基础概念 - **`:fir...
The :first-of-type CSS pseudo-class represents the first element of its type among a group of sibling elements.
:first-of-type 表示一组同级元素中其类型的名列前茅个元素:last-of-type 表示一组同级元素中其类型的最后一个元素:only-of-type 表示没有同类型兄弟元素的元素:only-child 表示没有任何兄弟的元素:nth-child(n) 根据元素在一组同级中的位置匹配元素:nth-last-of-type(n) 匹配给定类型的元素,基于它们在一组...