Design Issue

by 6 replies
7
#website design #design #issue
  • IE does not support round corners, and most of CSS3. That's all.
    • [1] reply
  • [moderated: you must promise NOT to dig up old threads...]
    (unless you want all your posts deleted)
    • [1] reply
    • 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.
  • Banned
    Using tiny images for rounded conner for IE are best. Older version of IE has not supported rounded conners.
  • 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;
    }

Next Topics on Trending Feed