Wednesday, 20 May 2020

Title css style


Demo : https://bootsnipp.com/snippets/QxDRX

Css :
.titlebox{ max-width: 300px; margin: auto; }
.titleBar{
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 25px;
  color: #F27335;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-align: center;
}
.titleBar:before,
.titleBar:after {
  content: "";
position: relative;
display: inline-block;
width: 25%;
height: 1px;
vertical-align: middle;
background: #F27335;
}


Html :
<div class="titlebox"><h1 class="titleBar">Billing Details</h1></div>

No comments: