Created
March 5, 2016 09:02
-
-
Save dougedgington/1e884c70e263a3d85051 to your computer and use it in GitHub Desktop.
Horizontal line behind title CSS
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
/* Horizontal line behind title | |
--------------------------------------------- */ | |
.title-wrapper { | |
border-bottom: 3px solid #10222b; | |
text-align: center; | |
margin-bottom: 41px; | |
} | |
h2.horizontal-line { | |
display: inline-block; | |
position: relative; | |
margin-bottom: 0px; | |
background-color: #fff; | |
top: 18px; | |
padding: 0 25px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment