Check out this cool horizontal line design I found on stackoverflow:
Click here for CSS code to create the line
I really like the look of the line. Here's how I implemented it on my website:
hr.fancy-line {
border: 0;
height: 5px;
}
hr.fancy-line:before {
top: -0.5em;
height: 1em;
}
hr.fancy-line:after {
content:'';
height: 0.5em;
top: 1px;
}
hr.fancy-line:before, hr.fancy-line:after {
content: '';
position: absolute;
width: 100%;
}
hr.fancy-line, hr.fancy-line:before {
background: radial-gradient(ellipse at center, rgba(0,0,0,0.1) 0%,rgba(0,0,0,0) 75%);
}
body, hr.fancy-line:after {
background: #f4f4f4;
}
-Some Text-
<hr class="fancy-line"></hr>
Now, I'm curious about creating vertical lines using a similar concept. If you're interested in seeing how I used the horizontal lines on my site, check out this link.