I am working on a global class for an HTML page.
<div class="wrapper">
<div class="content"></div>
</div>
Here is the CSS:
.div { width:auto; display:block }
.content { width:100px; height:50px; }
My issue is with the .content div, where I do not want the "display:block" class applied at runtime. Even after using dispay:inherit;, it doesn't work as expected. Is there any other way to remove the Display Style?