Styling br-tags
by fgnass
HTML
<p>
In this paragraph<br>
all <br> tags<br>
are styled via CSS<br>
and displayed as pilcrows.
</p>
CSS
br {
display: inline;
content: '';
color: silver;
font-family: sans-serif;
}
br:after {
white-space: pre;
content: '\b6\0a'
}