It seems that when you have an element with different sizes / color borders, you can see a very strange jagged line. I had never noticed this before, but looked at Vimeo a super hot new design when I noticed (I don't want to say “crash”) a strange appearance.
So, if you have a div hanging, as shown below, you will notice the pixel pitch (almost like it is set to insert, not solid ...)
div {
height : 25px;
width : 50px;
background : #eee;
border-style : solid;
border-color : green;
border-left-color : black;
border-width : 3px 3px 3px 15px;
}
Does anyone notice this / know why this is happening?
source
share