本文介绍了有没有“以前的兄弟姐妹"?选择器?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
加号 (+
) 用于选择下一个兄弟.
The plus sign (+
) is for selecting the next sibling.
前一个兄弟姐妹是否有等价物?
Is there an equivalent for the previous sibling?
推荐答案
不,没有前一个兄弟"选择器.
No, there is no "previous sibling" selector.
在相关说明中,~
用于一般的后继兄弟(意味着元素在此之后,但不一定紧随其后)并且是 CSS3 选择器.+
用于下一个兄弟,并且是 CSS2.1.
On a related note, ~
is for general successor sibling (meaning the element comes after this one, but not necessarily immediately after) and is a CSS3 selector. +
is for next sibling and is CSS2.1.
参见 相邻兄弟组合子来自 选择器级别 3 和 5.7 相邻兄弟选择器 来自 层叠样式表第 2 级修订版 1 (CSS 2.1) 规范.
See Adjacent sibling combinator from Selectors Level 3 and 5.7 Adjacent sibling selectors from Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification.
这篇关于有没有“以前的兄弟姐妹"?选择器?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!