CSS Child vs Descendant selectors(CSS Child vs Descendant 选择器)
问题描述
我对这两个选择器有点困惑.
I am a bit confused between these 2 selectors.
descendent 选择器是否:
div p
选择 div
中的所有 p
是否是直接后裔?所以如果 p
在另一个 div
里面它仍然会被选中?
select all p
within a div
whether or not it's an immediate descedent? So if the p
is inside another div
it will still be selected?
然后是 child 选择器:
div > p
有什么区别?孩子是指直接的孩子吗?例如.
Whats the difference? Does a child mean immediate child? Eg.
<div><p>
对
<div><div><p>
是否都被选中?
推荐答案
想想英语中的child"和descendant"这两个词是什么意思:
Just think of what the words "child" and "descendant" mean in English:
- 我的女儿既是我的孩子,也是我的后裔
- 我的孙女不是我的孩子,但她是我的后裔.
这篇关于CSS Child vs Descendant 选择器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:CSS Child vs Descendant 选择器


- 400或500级别的HTTP响应 2022-01-01
- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01
- Flexslider 箭头未正确显示 2022-01-01
- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01
- Fetch API 如何获取响应体? 2022-01-01
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- 失败的 Canvas 360 jquery 插件 2022-01-01
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- addEventListener 在 IE 11 中不起作用 2022-01-01