Some hr's do not appear

1

I have the style for a hr 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 go to:

height: 1.1px;
size:1.1px;

On, then all hr's appear.

How do I fix this?

This can be seen here

    
asked by anonymous 29.09.2017 / 15:19

1 answer

0

Problem solved by the author:

  

I just found the problem: the browser was zoomed in at 90%, when it goes to 100% the problem some. Thanks.

    
19.10.2017 / 15:20