I'm attempting to create a title style similar to what is shown below
https://i.sstatic.net/Qao4g.png
The issue I'm facing is achieving the underline effect. I tried using title:after
but it didn't give me the exact result I'm looking for.
Here's my code:
<h1>Sign In</h1>
<style>
h1:after{
content: '';
position: relative;
width: 102px;
height: 10px;
background-color: rgba(40,84,161,1);
}
</style>