Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Other CSS help on ID and Class Reply To: CSS help on ID and Class

#186268
Paulie_D
Member

#id .myclass .myclass2 {
my property
}

This selector will select an element has a class of myclass2 that is within an element with a class of myclass that is within an element with an ID of id.


<div id="id">
     <div class="myclass">
           <div class="myclass2"></div> /* this one */
     </div>
</div>

It won’t select this


<div id="id2">
     <div class="myclass3">
           <div class="myclass2"></div> /* not this one */
     </div>
</div>