Skip to content

Instantly share code, notes, and snippets.

@marcobraghim
Created September 3, 2018 20:42
Show Gist options
  • Save marcobraghim/e81989e9f5f7c03f903104a930a8ca53 to your computer and use it in GitHub Desktop.
Save marcobraghim/e81989e9f5f7c03f903104a930a8ca53 to your computer and use it in GitHub Desktop.
Page heading underline border
@charset "UTF-8";
h1.page-header { font-size: 1.8em; }
h2.page-header { font-size: 1.6em; }
h3.page-header { font-size: 1.4em; }
h4.page-header { font-size: 1.2em; }
h5.page-header { font-size: 1em; }
.page-header {
display: table;
position: relative;
text-transform: capitalize;
color: #666;
margin-bottom: 1em;
}
.page-header:after {
content: '';
position: absolute;
display: inline-block;
left: 0;
width: 100%;
border-bottom: 1px solid rgb(0, 0, 0, 0.2);
margin-top: 5px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment