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.
私はこれを持っています:
<div id="sidebar-a"> <form id="form"> <input class="button" type="submit"> </input> </form> </div>
そして、入力のみを選択する必要があります(私のページには同じもの<form>が#footerあり、このプロパティを変更する唯一の方法は、私がやろうとしたように、を使用することです#sidebar-aが、機能しません)
<form>
#footer
#sidebar-a
form同じ ID を持つ 2 つの要素を持つべきではありません。ただし、これはそれを行います:
form
#sidebar-a > form > input.button:first-of-type { }