
Background squashed in IE8 when using rounded corners
Hi, I have a pretty simple div with rounded corners and a repeating background, however in IE8 the background is being squashed/clipped. If I remove either the border-radius property or the PIE behavior the background displays as it should, however of course I need both the background image and the rounded corners. Here's the code, I've also included a link to how it looks in other browsers and how it looks in ie8 (IE8 being the bottom image)
http://s1168.photobucket.com/albums/r48 ... ction=view¤t=96d5bbd7.jpg&evt=user_media_share
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
body {
background-color:#999;
}
#banner {
position:relative;
width:80%;
margin:auto;
height:100%;
width:500px;
height:60px;
margin-top:50px;
z-index:3;
border-radius:10px;
background:url('images/banner.jpg') repeat-x #000;
border:none;
behavior: url(PIE.htc);
}
</style>
</head>
<body>
<div id="banner">Starts here Blah</div>
</body>
</html>