为了账号安全,请及时绑定邮箱和手机立即绑定

三重结构下的元素选择

谁知道三重结构下元素该如何选择,请指点一二,例如:我想选择第3个div中的第二个p元素。

<!DOCTYPE html>

<html>

<head> 

<meta charset="utf-8">

<title>属性选择器</title>

<link href="style.css" rel="stylesheet" type="text/css">

</head> 

<body>

<div class="wrapper">

  <div>我是第一个Div元素</div>

  <div>我是第二个Div元素</div>

  <div>我是第三个Div元素

       <p>我是第一个段落</p>

       <p>我是第二个段落</p>

  </div>

 

  <p>我是第三个段落</p>

</div>

</body>

</html>


正在回答

3 回答

.wrapper>div:nth-child(3)>p:nth-child(2) 

1 回复 有任何疑惑可以回复我~
#1

旅sir 提问者

可以的,对谢!
2017-05-30 回复 有任何疑惑可以回复我~

.wrapper > div>p:nth-of-type(2){

  background: orange;

}

.wrapper p:nth-of-type(2){

  background: orange;

}


0 回复 有任何疑惑可以回复我~

.wrapper p:nth-of-type(2)

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

三重结构下的元素选择

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信