Is there a way to create a slim horizontal line without using the <hr>
tag ?
This is what I attempted:
.horizontal-line{
border-top: 1px solid #9E9E9E;
border-bottom: 1px solid #9E9E9E;
}
While it does function, I am hoping for a thinner line. I experimented with changing 1px to 0.5px, but unfortunately, it did not produce the desired effect.