Playing around with owl selector

http://www.mybridge.co/view/3307

by Augustus Yuan

HTML

<div class="block">Block 1</div>
<div class="block">Block 2</div>

<p>Paragraph 1</p>
<p>Paragraph 2</p>

CSS

.block + .block {
    margin-top: 1.5em;
}

p {
	text-align: justify;
}

p + p {
margin-top: 0;
text-indent: 2em;
}