I have an <h1>
with a text-decoration
of underline, I was able to make it the same width as text via display: table-cell
like so:
#login h1 {
color: #FFF;
border-bottom: 2px solid #15b6e5;
text-transform: uppercase;
font-weight: 700;
text-align: center;
display: table-cell;
}
Now I am trying to center it, I tried adding a wrapper and add display: table
, it centers it but the underline is not same width as the text:
#login .heading-wrapper {
display: table;
width: 100%;
}
Here is the HTML
<div class="col-md-12 heading-wrapper">
<h1>Login</h1>
</div>
What am I doing wrong?