We Recommend

CSS: The Definitive Guide CSS: The Definitive Guide
Provides you with a comprehensive guide to CSS implementation, along with a thorough review of all aspects of CSS 2.1. Updated to cover Internet Explorer 7, Microsoft's vastly improved browser, this new edition includes content on positioning, text wrapping (nowrap), lists and generated content, table layout, user interface, paged media, and more.


Posted By

Tamedo on 06/26/08


Tagged


Versions (?)


Who likes this?

2 people have marked this snippet as a favorite

brent-man
SpinZ


100% CSS ROUNDED CORNERS !! No IE sorry!


Published in: CSS 


  1. #div-name {
  2. border-radius: 5px;
  3. -webkit-border-radius: 5px;
  4. -opera-border-radius: 5px;
  5. -moz-border-radius: 5px;
  6. }

Report this snippet 

Comments

RSS Icon Subscribe to comments
Posted By: brent-man on June 26, 2008

It's a shame this does not work for IE. I'm tired of IE hacks.

Posted By: Tamedo on June 26, 2008

yeh me also, i HATE Ie!!

You need to login to post a comment.