I create a horizontal line separator like so:
/* line separator */
.aSeparator {
border-top:1px solid #5f656d;
height:1px;
margin:16px 0;
}
<div class="aSeparator"></div>
View it here: https://jsfiddle.net/xjna71pn/
It's cool because it stays the length of the window minus the padding.
My question is, how can I create a vertical one?
I tried the obvious, border-left
but it didn't seem to work.