CSS: Rounded Border Corner (radius), Firefox, WebKit, Standard
April 17th, 2009 by jeremychoneMost modern browsers support rounder borders, but they all have their own syntax (standard coming).
Here is the code for some “tabs” elements:
.tab{
-moz-border-radius-topleft: 4px;
-moz-border-radius-topright: 4px;
-webkit-border-top-left-radius: 4px;
-webkit-border-top-right-radius: 4px;
}
.bubble{
-moz-border-radius: 15px;
-webkit-border-radius: 15px;
}