Created
April 14, 2015 09:13
-
-
Save AdamMarsden/f249dee01ed1c00b40df to your computer and use it in GitHub Desktop.
Left & right border lines next to text
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
<div class="left_right_lines"> | |
<span> | |
<h6>Text with lines</h6> | |
</span> | |
</div> |
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
.left_right_lines { | |
width: 500px; | |
margin: 0 auto; | |
overflow: hidden; | |
span { | |
display: inline-block; | |
position: relative; | |
&:before, &:after { | |
content: ""; | |
position: absolute; | |
height: 5px; | |
border-top: 1px solid $white; | |
top: 10px; | |
width: 700px; | |
} | |
&:before { | |
right: 100%; | |
margin-right: 15px; | |
} | |
&:after { | |
left: 100%; | |
margin-left: 15px; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment