views:

34

answers:

1

Hi,

Can someone explain me why the following css isn't working for iexplorer 8?

.rounded_corners{

background: url(../images/achtergrond_homepage.png)no-repeat left bottom;
display: block;
left: 480px;
top: 130px;
z-index: 100000;
position: absolute;
color:#FFF;
padding: 15px;
width: 360px;
height: 470px;

}
A: 

I'd say that

background: url(../images/achtergrond_homepage.png)no-repeat left bottom;

should most likely be

background: url(../images/achtergrond_homepage.png) no-repeat left bottom;
marcgg