Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道:
p+p
在另一个 p 之后更改第一个 p 的样式。但是如何在 ap 之后更改第二个 p 的 css 呢?
只需添加另一个+p:
+p
p+p+p
如果您有三个以上的p元素,则这适用于第一个之后的第二个,以及所有后续元素。如果您只想应用于一个p元素,请使用:
p
p:first-child+p+p
或者,如果您有能力忽略旧版浏览器:
p:nth-child(3)