Discussion:
Round corners for IE
Erik
2010-02-01 17:54:45 UTC
Permalink
Whats the latest solution for achieving round corners for IE.

I've been using these in my css for all my <div>'s:

-moz-border-radius-bottomright: 6px;
-khtml-border-radius-bottomright: 6px;
-webkit-border-bottom-right-radius: 6px;
-moz-border-radius-bottomleft: 6px;
-khtml-border-radius-bottomleft: 6px;
-webkit-border-bottom-left-radius: 6px;




Erik
Andreas Möller
2010-02-01 18:07:06 UTC
Permalink
Post by Erik
Whats the latest solution for achieving round corners for IE.
It may not be the latest, but at least it's a solution:

Sliding doors with sprites.

<div class="box">
<div class="box-top">
<div class="box-top-right">
</div>
</div>
<div class="box-content">
<div class="box-content-right">
<!-- content goes here -->
</div>
</div>
<div class="box-bottom">
<div class="box-bottom-right">
</div>
</div>
</div>


Best regards,

Andreas
Jack Killpatrick
2010-02-01 20:04:11 UTC
Permalink
I've had good luck with this plugin:

http://www.parkerfox.co.uk/labs/cornerz

- Jack
Post by Erik
Whats the latest solution for achieving round corners for IE.
-moz-border-radius-bottomright: 6px;
-khtml-border-radius-bottomright: 6px;
-webkit-border-bottom-right-radius: 6px;
-moz-border-radius-bottomleft: 6px;
-khtml-border-radius-bottomleft: 6px;
-webkit-border-bottom-left-radius: 6px;
Erik
Loading...