Border Visible in IE8 but Not in Chrome?

This works in IE8 but the border is not visible in Chrome VER. 19.0.1084.52 m


#slideshow img {
	width:460px;	/*changes from 470 to accomadate the frame*/
	height:270px;
	border-style: inset;
	border: medium;

}

Thanks . . . Rick

Instead of

border: medium;

it should be

border-width: medium;

Otherwise, the border: shorthand overrides anything before it.

Also be careful with the border keywords (such as thin and medium) as they have different values in different browsers because the specs don’t explicitly define what size they should be just that they should be thinner or thicker etc. Use px for border to be certain. :slight_smile: