CSS3PIE works for all other elements on my site from <div>
s to <img>
s but I cannot for the life of me get it to work on <button>
elements.
I've tried some usual hacks to get things to work like so (I'm using SASS):
button {
position: relative !important;
zoom: 1 !important;
display: block !important;
border-radius: 10px !important;
-ms-behavior: url(/assets/pie/PIE.htc) !important;
behavior: url(/assets/pie/PIE.htc) !important;
z-index: 0 !important;
}
Whatever I try, the border-radius
just does nothing.
Changing them from <buttons>
to other html elements is not an option.
Any ideas?
Thanks