In light of more discussion with OP, this answer does not help. Instead, see the comments for clarification with the OP.
Firstly, it helps if you include certain code.
In general, specify a CSS selector that is more specific to the child than one that sets overflow: hidden;
For example,
Style:
.hide-children div {overflow: hidden;} .hide-children div.show-me {overflow: none;}
HTML:
<div class="hide-children"> <div class="child"></div> <div class="child"></div> <div class="child show-me"></div> </div>
But, as I said, only after some sample code can a more meaningful answer be provided.
bPratik
source share