I don't want css to be applied to a child element.
<div id="main">
<div id="child">
<div id="subchild">
<p> subchild </p>
</div>
<p> child </p>
</div>
</div>
I want to apply css to all divs except the subchild div and its children.
#main, #child {...}. – Vadim Belyaev Jan 12 '12 at 16:22