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.
我想更改与输入相同的父元素中的元素。当我<input>专注时,我想改变<p>元素的颜色。
<input>
<p>
<div id="sample"> <input type="text"> <p>Hello</p> </div>
有办法吗?
问候克里斯
相邻兄弟组合器 CSS 选择器用于以下情况:
input:focus + p
这是一个使用您的 HTML 和我的 CSS 选择器的JSFiddle 示例,可以满足您的要求。