funding circle header - my version
Without using a pseudo element for underline
by Richard Hunter
October 12, 2020
HTML
<div class="container">
<h2 class="not-funding-circle-header">Borrow more for your business with a CBILS loan</h2>
</div>
<div class="container">
<h2 class="funding-circle-header">Borrow more for your business with a CBILS loan</h2>
</div>
CSS
body {
margin: 0;
}
.container {
padding: 10px;
border: dotted 2px dimgrey;
margin: 10px;
}
.funding-circle-header {
font-weight: 700;
color: #75227d;
font-family: Amasis, Georgia, serif;
font-size: 2.625rem;
line-height: 3rem;
margin-top: 0;
margin-bottom: 1rem;
}
.funding-circle-header:after {
display: block;
width: 3rem;
height: .1875rem;
margin-top: .5rem;
background-color: #ff6b00;
content: '';
}
.not-funding-circle-header {
font-weight: 700;
color: #75227d;
font-family: Amasis, Georgia, serif;
font-size: 80px;
line-height: 1.2;
margin-top: 0;
margin-bottom: 0.5em;
border-bottom: solid 0.1em transparent;
padding-bottom: 0.5em;
border-image: linear-gradient(90deg, #ff6b00 10%, transparent 0) 5;
}