1
I got the style for a hr
down below:
hr {
width : 100%;
height: 1px;
size:1px;
background-color: rgb(0,0,0);
}
and I have 4 hr's
on the page.
The problem is that when I do
height: 1px;
size:1px;
or
height: 1.0px;
size:1.0px;
Some hr's
appear.
But when I pass to:
height: 1.1px;
size:1.1px;
on, then all hr's
appear.
How to fix this?
This can be seen here
In the link informed only have two
<hr>
and they both show up.– Sam
I just found the problem: the browser was zooming 90%, when it goes to 100% the problem some. Thanks.
– Carlos Rocha