Created
August 6, 2015 23:07
-
-
Save aalexeev239/f7d49711fb38bec462cb to your computer and use it in GitHub Desktop.
---- hipsta header ----
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
<h1>Heading</h1> | |
<h1>This is a longer heading</h1> |
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
h1 { | |
overflow: hidden; | |
text-align: center; | |
} | |
h1:before, | |
h1:after { | |
background-color: #000; | |
content: ""; | |
display: inline-block; | |
height: 1px; | |
position: relative; | |
vertical-align: middle; | |
width: 50%; | |
} | |
h1:before { | |
right: 0.5em; | |
margin-left: -50%; | |
} | |
h1:after { | |
left: 0.5em; | |
margin-right: -50%; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment