Is there any way I can only add margin to the border ?
Only border should have margin not the text. I am trying to move border not the text field. Border need to be shri
You can use pseudo-element and then you can change size of border
.margin-check {
display: inline-block;
position: relative;
}
.margin-check:after {
position: absolute;
content: '';
border-bottom: 1px solid #d2d7da;
width: 70%;
transform: translateX(-50%);
bottom: -15px;
left: 50%;
}
Something I am typing for checking the border margin