Is there a reliable CSS typography boilerplate, which works under a namespace (i.e., a class) and not globally?
Let me briefly explain the situation: I’m using a CSS reset for layout and I’d like to be able to add a certain class (.content for example) to a div, which would then apply some uniform typography rules to that div‘s elements only:
<p>This one's reset</p>
<div class="content">
<p>This one has typography rules applied</p>
</div>
So apparently, there is no such thing. And if you take a CSS typography boilerplate, you’ll have to add a namespace yourself, which is an obvious solution, but not the one I was looking for.