What does the quot;+quot; (plus sign) CSS selector mean?(“+是什么意思?(加号) CSS 选择器是什么意思?)
问题描述
例如:
p + p {
/* Some declarations */
}
我不知道 + 是什么意思.这与只为 p 定义样式而不使用 + p 有什么区别?
I don't know what the + means. What's the difference between this and just defining a style for p without + p?
推荐答案
参见W3.org 上的>相邻选择器.
在这种情况下,选择器意味着样式仅适用于紧跟另一个段落的段落.
In this case, the selector means that the style applies only to paragraphs directly following another paragraph.
一个普通的 p 选择器会将样式应用于页面中的每个段落.
A plain p selector would apply the style to every paragraph in the page.
这仅适用于 IE7 或更高版本.在 IE6 中,该样式不会应用于任何元素.顺便说一句,这也适用于 > 组合器.
This will only work on IE7 or above. In IE6, the style will not be applied to any elements. This also goes for the > combinator, by the way.
另请参阅 Microsoft 的 CSS 兼容性概述Internet Explorer.
See also Microsoft's overview for CSS compatibility in Internet Explorer.
这篇关于“+"是什么意思?(加号) CSS 选择器是什么意思?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:“+"是什么意思?(加号) CSS 选择器是什么意思
基础教程推荐
- 如何使用sencha Touch2在单页中显示列表和其他标签 2022-01-01
- 如何在特定日期之前获取消息? 2022-01-01
- 为什么我在 Vue.js 中得到 ERR_CONNECTION_TIMED_OUT? 2022-01-01
- jQuery File Upload - 如何识别所有文件何时上传 2022-01-01
- Javascript 在多个元素上单击事件侦听器并获取目标 2022-01-01
- 如何使用 CSS 显示和隐藏 div? 2022-01-01
- WatchKit 支持 html 吗?有没有像 UIWebview 这样的控制器? 2022-01-01
- 每次设置弹出窗口的焦点 2022-01-01
- Node.js 有没有好的索引/搜索引擎? 2022-01-01
- 什么是不使用 jQuery 的经验技术原因? 2022-01-01
