Last active
August 29, 2015 14:00
-
-
Save daveltr/11048009 to your computer and use it in GitHub Desktop.
centered color block hr
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
.hr-wrapper { | |
margin-top: 50px; | |
} | |
.full-width { | |
position: absolute; | |
width: 100%; | |
border-bottom: 1px solid #ddd; | |
margin-top: 0px; | |
} | |
.mid-color { | |
position: absolute; | |
width: 50px; | |
border-bottom: 5px solid blue; | |
/*Centering Method 2*/ | |
margin: -2px 0 0 -25px; | |
left: 50%; | |
z-index: 1; | |
} |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
<div class='hr-wrapper'> | |
<div class='full-width'> | |
<div class='mid-color'> | |
</div> | |
</div> | |
</div> | |
</head> | |
<body> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment