Using firebug, I found that blueprint css framework is applying this style to my <p>
tags:
p + p {
margin-top:-1.5em;
text-indent:2em;
}
I don't know what the +
means.
What's the difference between this and just definining a style for p
without + p
?