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.
私は次のHTMLを持っています
<div id"mainDiv"> <ul id="cat1"> </ul> </div> <div id"mainDiv"> <ul id="cat2"> </ul> </div>
そのdivにスタイリングを適用したいので、CSSで子ul「cat1」を持つ「mainDiv」を選択したいと思います。しかし、すべてのmaindivのものではありません
何か案は?
現在、このための CSS セレクターがないため、JavaScript/jQuery に頼る必要があります。
$('#cat2').parent().css(/* add it here */);