Hallo,
habe mein .box css ein wenig angepasst und musste heute feststellen, dass der IE da leider nicht mitspielt! Welche Alternative gibt es für nachfolgenden css Code und wird dazu eine extra css Datei benötigt oder kann das im gleichen Block rein?
.box {
width: 212px;
margin-bottom: 15px;
background: #f2f2f2;
/*schatten box*/
-moz-box-shadow: 2px 2px 5px #838383;
-webkit-box-shadow: 2px 2px 5px #838383;
box-shadow: 2px 2px 5px #838383;
/*runde ecken box*/
border-top-right-radius: 4px;
border-bottom-right-radius: 0px;
border-bottom-left-radius: 0px;
border-top-left-radius: 4px;
-moz-border-radius-topright: 4px;
-moz-border-radius-bottomright: 0px;
-moz-border-radius-bottomleft: 0px;
-moz-border-radius-topleft: 4px;
-webkit-border-top-right-radius: 4px;
-webkit-border-bottom-right-radius: 0px;
-webkit-border-bottom-left-radius: 0px;
-webkit-border-top-left-radius: 4px;
}
Grüße aus Berlin