- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
w3schools的方式短语吧,它们听起来一样。
div + p
Selects all<p>
elements that are placed immediately after<div>
elements
div ~ p
Selects every<p>
element that are preceded by a<div>
element
如果 <p>
元素紧跟在 <div>
之后元素,这是否意味着 <p>
元素前面有一个 <div>
元素?
无论如何,我正在寻找一个选择器,我可以在其中选择一个紧接在给定元素之前的元素。
最佳答案
相邻兄弟选择器 X + Y
Adjacent sibling selectors have the following syntax: E1 + E2, where E2 is the subject of the selector. The selector matches if E1 and E2 share the same parent in the document tree and E1 immediately precedes E2, ignoring non-element nodes (such as text nodes and comments).
ul + p {
color: red;
}
In this example it will select only the element that is immediately preceded by the former element. In this case, only the first paragraph after each ul will have red text.
ul + p {
color: red;
}
<div id="container">
<ul>
<li>List Item</li>
<li>List Item</li>
<li>List Item</li>
<li>List Item</li>
</ul>
<p>This will be red</p>
<p>This will be black</p>
<p>This will be black</p>
</div>
通用兄弟选择器 X ~ Y
The ~ combinator separates two selectors and matches the second element only if it is preceded by the first, and both share a common parent.
ul ~ p {
color: red;
}
This sibling combinator is similar to X + Y, however, it's less strict. While an adjacent selector (ul + p) will only select the first element that is immediately preceded by the former selector, this one is more generalized. It will select, referring to our example above, any p elements, as long as they follow a ul.
ul ~ p {
color: red;
}
<div id="container">
<ul>
<li>List Item
<ul>
<li>Child</li>
</ul>
</li>
<li>List Item</li>
<li>List Item</li>
<li>List Item</li>
</ul>
<p>This will be red.</p>
<p>This will be red.</p>
<p>This will be red.</p>
<p>This will be red.</p>
</div>
来源
关于css - 选择器 div + p(加号)和 div ~ p(波浪号)之间的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26282375/
最近有人告诉我,+ (前一个模式/字符的一次或多次出现)不是基本正则表达式的一部分。甚至写为 \+ 时也不行. 这是关于最大兼容性的问题。 我的印象是…… echo "Hello World, I a
我正在寻找电话号码的正则表达式,但似乎找不到我需要的东西。 要求 以加号(可选)开头,例如。 +442021234 允许括号(可选)例如。 (+44)2021234 允许任意长度的数字 允许数字之间的
假设我使用 gsub 并希望从字符串中删除以下 (=,+,-) 符号并替换为下划线。 有人可以描述当我尝试使用带加号 (+) 的 gsub 时发生的情况吗? test<- "sandwich=brea
我一直在寻找一种方法来将我自己的自定义符号字符添加到正数和负数中,但似乎没有一种标准的方法可以做到这一点。 IOStreams 中的加减号是否已国际化?我能找到的最接近覆盖它的是 std::money
过去几天我一直在开发菜单。它将用作可扩展/可折叠(甚至是一个词吗?)菜单。现在我让菜单默认垂直变大,然后当你点击“+/-”按钮时,尺寸垂直减小。你再次点击它,然后它在垂直方向上变大......等等。
你好,我正在阅读 Mach7 的以下代码(顺便说一句,看起来不错,我想知道为什么 c++17 没有采用它,但那是题外话……) bool operator==(const Term& left, con
我正在尝试通过玩 Arduino Uno 来学习 C。我正在审查 code for the Colorduino library on github .我想知道 ++ 在应用于结构时如何工作。 在 C
我正在使用 PHP 和我的短信服务提供商提供的 API key 向手机发送短信。 我发送的短信完美地到达了目标手机,但问题是当我有一个 "+" 登录我的消息时 "+" 没有出现在手机。这可能是因为 "
我一直在寻找有关立即调用函数的信息,在某个地方我偶然发现了这种表示法: +function(){console.log("Something.")}() 有人可以向我解释一下函数前面的 + 符号的含义
mvn dependency-tree有什么区别'+' 和 '\' 之间的输出。这对我来说似乎相当随意,但我确定这不是...... +- com.tom:artifact:pom:6.0.0:comp
抱歉,如果这些问题是 JS 的基础知识之一。 问题 1。 我试图让代码检测位于外部数组内部的内部数组, 数组的结构是这样的; var array = ['鲍勃', ['蒂姆', '凯蒂', '佐伊']
我正在制作一个计算器程序,但在使用加法功能时遇到问题。我有其他功能(“/”、“-”、“*”)工作,但加号(“+”)不起作用。 html 和 JavaScript 包含在下面... RDaniel
这个问题已经有答案了: How to encode the plus (+) symbol in a URL (6 个回答) 已关闭 3 个月前。 我找不到任何地方,我认为这是独特的问题。 我想添加以
这是我在网上找到的一个正则表达式,似乎在简单的电子邮件地址验证方面做得很好。问题是它不允许在电子邮件中使用 +,例如 my+email@domain.com。我不擅长正则表达式,那么如何在不破坏整个东
我无法下载图片: http://www.wallpick.com/wp-content/uploads/2014/02/08/Water+Sports_wallpapers_242-640x480.j
我想知道如何在 Javascript 中将变量作为 +4 传递,然后在 php 中将其作为 +4 检索。 无论我做什么,每当我存储一个+4",并验证它是这样存储的,当我检索它时,+ 就消失了,我所有的
这个问题的答案是community effort 。编辑现有答案以改进这篇文章。它目前不接受新的答案或互动。
这个问题的答案是community effort 。编辑现有答案以改进这篇文章。它目前不接受新的答案或互动。
这个问题的答案是community effort 。编辑现有答案以改进这篇文章。它目前不接受新的答案或互动。
谁能帮助我理解使用 isinstance 时加号 (+) 的用途。 In [76]: isinstance('qwert', string) Out[76]: True In [77]: isinst
我是一名优秀的程序员,十分优秀!