Skip to content

Instantly share code, notes, and snippets.

@daveltr
Last active August 29, 2015 14:00
Show Gist options
  • Save daveltr/11048009 to your computer and use it in GitHub Desktop.
Save daveltr/11048009 to your computer and use it in GitHub Desktop.
centered color block hr
.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;
}
<!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