I have a line in a layout I'm doing, and I did not want to create a div
just for her.
I would like to continue the hierarchy I created. So I decided to use <hr />
Example:
.empresa hr {
width: 100%;
height: 1px;
background-color: #dddddd;
}
What happens is that, by zooming in, I get the impression that the height of the line is not 1px , I get the impression that it's already a border.
Is this normal? Is <hr />
still common?