Created
April 3, 2015 22:50
-
-
Save veremey/c1350073a066d5ed5512 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
<h1>Немного букв</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
body{ | |
background-color: #f0f; | |
} | |
h1 { | |
overflow: hidden; | |
position: relative; | |
width: 80%; | |
margin: 0 auto; | |
font-family: Georgia, serif; | |
font-size: 24px; | |
font-weight: normal; | |
text-align: center; | |
white-space: nowrap; | |
} | |
h1:before, | |
h1:after { | |
content: ''; | |
position: relative; | |
display: inline-block; | |
vertical-align: middle; | |
width: 50%; | |
height: 9px; | |
top: -1px; | |
border-bottom: 1px solid #fff; | |
border-top: 1px solid #fff; | |
} | |
h1:before { | |
left: -.5em; | |
margin-left: -50%; | |
} | |
h1:after { | |
left: 10px; | |
margin-right: -50%; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment