欢迎访问服务器技术网-www.fuwuqijishu.com

CSS :first-child 选择器

CSS fuwuqijishu 2年前 (2022-09-04) 142次浏览 0个评论 扫描二维码
文章目录[隐藏]

CSS :first-child 选择器

实例

匹配 <p> 的父元素的第一个<p>元素

p:first-child
{
background-color:yellow;
}


定义和用法

:first-child 选择器匹配其父元素中的第一个子元素。


浏览器支持

表格中的数字表示支持该属性的第一个浏览器版本号。

选择器
:first-child 4.0 7.0 3.0 3.1 9.6

注意: :first-child在IE8和更早版本IE版本中必须声明<!DOCTYPE>


相关文章

CSS 教程: CSS 伪类


更多实例

实例

选择每个 <p> 中的每个 <i> 元素并设置其样式,其中的 <p> 元素是其父元素的第一个子元素:

p:first-child i
{
background:yellow;
}

实例

列表中的第一个 <li>元素选择的样式:

li:first-child
{
background:yellow;
}

实例

每一个<ul>元素的第一个子元素选择的样式::

ul>:first-child
{
background:yellow;
}


喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2118.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900