This should be a simple thing but I can't seem to find what I'm after. I've got a parent div with sub-parents and children inside.
<div class="parent">
<div class="subparent1">
<div class="foo">foo1 </div>
<div class="bar">bar1 </div>
</div>
<div class="subparent2">
<div class="foo">foo2 </div>
</div>
<div class="subparent3">
<div class="bar">bar2 </div>
<div class="foo">foo3 </div>
<div class="bar">bar3 </div>
</div>
</div>
I want to hide all '.foo' classes apart from the first one. How do I use CSS3 to select all the rest of '.foo' apart from the first?
PS -- number of '.foo' is dynamic and will change.
.parent .foo {display:none;}and.parent .foo:first {display:block;}? – mshsayem Feb 12 at 8:55:firstin CSS. – BoltClock♦ Feb 12 at 8:56.parent > .foo {display:none;}and.parent>.foo:first-of-type {display:block;}? – mshsayem Feb 12 at 9:03.foobeing hidden in browsers that don't support CSS3 selectors. – thirtydot Feb 12 at 9:09:first-of-typedoesn't mean first of class. You probably already know this, but for other readers, see this answer for an explanation. – BoltClock♦ Feb 12 at 9:28