“+"是什么意思(加号)CSS 选择器是什么意思? [英] What does the "+" (plus sign) CSS selector mean?

查看:51
本文介绍了“+"是什么意思(加号)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 选择器是什么意思?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆