I just noticed that the border radius for my toolbar is not working in ie9. The strange thing is that there is a window shadow that makes a curve, so I have no idea what is going on. In IE, the actual toolbar of the div is not curved, but it makes the window shadow. Everything is fine in all other browsers, and I know that ie9 supports border radius.
Anyway css is below. I removed all the prefixes and unnecessary styles, so there is only the shadow of the box and the radius of the border. Here is jsfiddle with all styles.
UPDATE
I found out what is going wrong. The gradient stopped the border radius form working in IE, so I will now disable it in IE. If someone has a way to keep them and the border radius, that would be great. I added gradient styles.
.membersbar { width:98%; background-color:#313131; height:30px; padding-top:5px; border-bottom-right-radius:2em; position:fixed; top:0; box-shadow:0 0 5px 5px #999; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#313131', endColorstr='#202020'); background: -webkit-gradient(linear, left top, left bottom, from(#313131), to(#202020)); background: -moz-linear-gradient(top, #313131, #202020); }
This is relevant information in the head;
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> </head>
source share