1 1、使用li标签创建一个列表,用于测试。 2、设置ul标签的class属性值为myway,用于设置样式。 3、在css标签内,通过class和“:first-child”选择器选中第一个li元素。 4、在css标签内,设置第一个li元素的内容颜色为红色,并且加粗显示。 5、在浏览器打开test.html文件,查看实现的效果。
:first-child 方法/步骤 1 :first-child伪类元素选择器初识 2 新建一个HTML文档,包含两个<P>元素 3 选择P元素,且是其父元素的首个子元素,设置背景色 4 保存文件查看,显示效果 5 调换P和H1的位置,让P成为BODY的第一个子元素 6 保存后,再次查看消失效果 7 :first-child 使用总结:注意事项 理解first-...
效果 所有的class同名被选中设置属性,最后一个是span元素不支持设置宽高 4.id选择器 id唯一 选中指定的元素 <!DOCTYPE html>Title/*4.id选择器 id是唯一的 选中指定的某个元素*/#id_1{height:50px;width:140px;background:lightpink;}测试通用元素匹配1测试通用元素匹配测试通用元素匹配2测试通用元素匹配3 效果...
li:first-child{color:red} 2. last-child 选择列表中的最后一个标签 li:last-child{color:pink} 3.nth-child(n) 这里的n为数字,表示选择列表中的第n个标签 例如选择第三个标签 li:nth-child(3){color:pink} 4.nth-child(2n) 选择列表中的偶数,选中 2、4、6…… 个标签。 li:nth-child(2n){colo...
The :first-child selector matches the first child element.:first-child is a Pseudo-class and it applies to any element that is the first child of another element. With :first-child pseudo-class, an element is matched only when it is the first child of another element. For example, p:...
首先要更正一下,不存在first-of-child的,只有first-of-type 下面就说说first-child与first-of-type的区别:first-child:父元素的第一个子元素且必须符合指定类型 first-of-type:父元素的符合指定类型的第一个子元素 当然,光看文字也是很难理解的,下面看看例子: 第1行 第2行 第3行 这种情况...
:first-child 单独使用这个选择器不带任何前缀,选择的是作为 “某个元素” 的 “第一个子元素” 的元素 ,某个元素是文档里的任意元素(即所有元素),第一个子元素可以是任意的元素,要想明白这个子元素,很好的一个方式是使用jquery,在浏览器控制台使用 $(":last-child") 查看选择出来的元素就可以一目了然。
p:first-child选择的是第一个节点然后看这个节点是不是 p 元素,是的话生效。因此要生效,一定要保证要选择的元素前面没有兄弟节点,否则就用 div 包住。 p:first-of-type选择的是第一个 p 元素节点,这才是我默认理解的意思,因此使用这种方法也能达到选择first-child的效果,并且前面可以有节点。
Here, the first image inside a container with the class `.container` will have a border of `2px` solid `#3498DB` and a border-radius of `8px`. The CSS :first-child selector is a powerful tool that enables you to style or modify the first child element within a parent container. ...
p:first-child{background-color:yellow;} 尝试一下 » 定义和用法 :first-child 选择器匹配其父元素中的第一个子元素。 浏览器支持 表格中的数字表示支持该属性的第一个浏览器版本号。 选择器 :first-child4.07.03.03.19.6 注意::first-child在IE8和更早版本IE版本中必须声明<!DOCTYPE> ...