Created
April 12, 2017 16:40
-
-
Save rbenvenuto/d2653acb9165439a54fef78207a29ba8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
div.hr { | |
width:70%; | |
height: 1px; | |
background: #7F7F7F; | |
} | |
div.hr:after { | |
content:''; | |
position: absolute; | |
border-style: solid; | |
border-width: 30px 30px 0; | |
border-color: #FFFFFF transparent; | |
display: block; | |
width: 0; | |
z-index: 1; | |
top: 8px; | |
left: 0%; | |
} | |
div.hr:before { | |
content:''; | |
position: absolute; | |
border-style: solid; | |
border-width: 30px 30px 0; | |
border-color: #7F7F7F transparent; | |
display: block; | |
width: 0; | |
z-index: 1; | |
top: 9px; | |
left: 0%; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="hr"></div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment