Some hr’s don’t show up

Asked

Viewed 27 times

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.

  • 1

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

1 answer

1

Problem solved by the author himself:

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

Browser other questions tagged

You are not signed in. Login or sign up in order to post.