I have such css:
p{
margin: .85em auto;
line-height: 1.7;
text-indent: 2em;
}
blockquote p {
text-indent: 0;
}
Is there any way to optimize that using stylus?
Just to do something like that:
p{
margin: .85em auto;
line-height: 1.7;
(not if blockquote) text-indent: 2em;
}
HTML I am trying to apply that to
<div class="entry">
<p></p> //text-indent here
<blockquote>
<p></p> //no text-indent here
</blockquote>
</div>