I have this in my CSS:
.myAwesomeElement {
position: relative;
z-index: 0;
zoom: 1;
border: 1px solid #999;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
background: #6699CC;
behavior: url(PIE.htc);
}
I have this in my HTML
<input type="button" class="myAwesomeElement" value="#myAwesomeElement" onClick="">
The PIE.htc
file is on the root directory with the HTML file.
When I view this in IE8, the button displays but it does not have rounded edges.
Am I missing something?