1

Does anyone know of a way to do the following in IE8?

-moz-border-radius-bottomleft: 70% 100%;

CSS3PIE only supports the simple border radius it seems, as well as most of the other IE css3 plug-ins.

Cody Gray - on strike
  • 239,200
  • 50
  • 490
  • 574
Craig
  • 117
  • 1
  • 7

1 Answers1

2

PIE does in fact support different x/y radii per corner; however you have to do it using the shorthand syntax, as described in the documentation: http://css3pie.com/documentation/supported-css3-features/#border-radius

For your example, it would be:

border-radius: 0 0 0 70% / 0 0 0 100%;

As far as I'm aware, PIE is the only one of the IE CSS3 polyfills that supports this in any fashion.

lojjic
  • 791
  • 5
  • 7
  • Thanks Lojjic, i had already converted the layout to images but i will give this a try. – Craig Apr 12 '11 at 16:02