What does the + in this CSS rule mean?
+
h2 + p { font-size: 1.4em; font-weight: bold; color: #777
it selects all P tags that are directly beside an h2 tag. Then gives it the said attributes.