I'm attempting to add thin borders to a div
. My CSS code is as follows:
border: solid;
border-width: 1px;
However, the resulting borders appear unevenly thin in my browser. The borders on the left and bottom seem thicker than those on the right and top.
I aim to create evenly thin borders. I have attempted to include
shape-rendering: crispEdges;
But it hasn't altered the appearance. Check out this JS Fiddle example here.
I tested this on Chrome Version 41.0.2272.101 m -- it doesn't look good. I also tried it on IE -- it appears fine. Therefore, I am confident that the issue isn't with my monitor...