6 replies
  • WEB DESIGN
  • |
How can create rounded corners in IE with the CSS3 ?
#design #issue
  • Profile picture of the author Nett
    IE does not support round corners, and most of CSS3. That's all.
    {{ DiscussionBoard.errors[8731681].message }}
  • Profile picture of the author sham2
    [moderated: you must promise NOT to dig up old threads...]
    (unless you want all your posts deleted)
    {{ DiscussionBoard.errors[8934684].message }}
    • Profile picture of the author Brandon Tanner
      Originally Posted by Nett View Post

      IE does not support round corners
      Originally Posted by sham2 View Post

      Sorry IE does not support border rounded of CSS3.
      Actually, IE has supported rounded corners (border-radius) since version 9. It's only older versions of IE (8 and earlier) that don't support it.

      If you need rounded corners for older versions of IE, the easiest way is to just use images with rounded corners. If you prefer a CSS-only solution instead, check out this.
      Signature

      {{ DiscussionBoard.errors[8934717].message }}
  • Profile picture of the author yestyle
    Banned
    Using tiny images for rounded conner for IE are best. Older version of IE has not supported rounded conners.
    {{ DiscussionBoard.errors[8934775].message }}
  • Profile picture of the author gogetim_3
    Yeah the latest version of internet explorer does support rounded corners. Add this to what ever div style you want

    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;

    Here is how it should look in your css

    .yourdiv {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    }
    {{ DiscussionBoard.errors[8937181].message }}

Trending Topics