MSFN Forum: Rounded Corners In Css With Ie - MSFN Forum

Jump to content


Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

Rounded Corners In Css With Ie Rate Topic: -----

#1 User is offline   JurgenDoe 

  • Newbie
  • Group: Members
  • Posts: 14
  • Joined: 04-July 07

Posted 11 April 2010 - 10:30 AM

usblocking, on 11 April 2010 - 09:56 AM, said:

CSS 3 has nice tag to draw rounded border of HTML elements using border-radius tag:


-moz-border-radius: 5px;

-webkit-border-radius: 5px;


Unfortunately, these tags are supported for Mozilla/Firefox and Safari 3. Users of IE 6 and IE7 won’t see the radius. Classical way to support Rounded corners in IE is to craft corner images. On practice it means we should have double CSS code: one with CSS3 support and other for IE.

We solved double CSS issue with JavaScript code. We found nice jQuery plugin - Curvy Corners. We single CSS code with radius tag and rest of work made by “Curvy Corners”. Usblocking.com designers simply specify CSS tag like:


#intro{

-moz-border-radius-bottomleft : 8px;

-webkit-border-bottom-left-radius: 8px;

-moz-border-radius-bottomright : 8px;

-webkit-border-bottom-right-radius: 8px;

}


Good thing this method works for all major IE versions as well as Firefox.

Dunno why ... but I get some CSS errors here using the -moz-border-radius-bottomright: 8px


#2 User is offline   JurgenDoe 

  • Newbie
  • Group: Members
  • Posts: 14
  • Joined: 04-July 07

Posted 11 April 2010 - 03:07 PM

usblocking, on 11 April 2010 - 12:35 PM, said:

View PostJurgenDoe, on 11 April 2010 - 10:30 AM, said:

Dunno why ... but I get some CSS errors here using the -moz-border-radius-bottomright: 8px


it should not be CSS errors. Firefox should use it and IE ignores.



I know ... get the css error in IE ... I'm testing always in IE too because this browser sucks :(

Share this topic:


Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

2 User(s) are reading this topic
0 members, 2 guests, 0 anonymous users



All trademarks mentioned on this page are the property of their respective owners
Copyright © 2001 - 2013 msfn.org
Privacy Policy