Skip to content

Instantly share code, notes, and snippets.

@markleyland
Created April 30, 2014 19:14
Show Gist options
  • Save markleyland/11435742 to your computer and use it in GitHub Desktop.
Save markleyland/11435742 to your computer and use it in GitHub Desktop.
CSS: Lines On Sides
h1 {
overflow: hidden;
text-align: center;
font-size: 1em;
}
h1:before,
h1:after {
border-top: 1px solid #000;
border-bottom: 1px solid #000;
content: "";
display: inline-block;
height: .1em;
position: relative;
vertical-align: middle;
width: 50%;
margin-bottom: .15em;
}
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