robert-o
11/10/2016 - 10:59 AM

Adding small underline under headings http://stackoverflow.com/questions/23502675/css-underline-less-than-width-of-headline

h1 {
    font-weight: 300;
    display: inline-block;
    padding-bottom: 5px;
    position: relative;
}

h1:before{
    content: "";
    position: absolute;
    width: 50%;
    height: 1px;
    bottom: 0;
    left: 25%;
    border-bottom: 1px solid red;
}