-1

Possible Duplicates:
CSS Rounded corners.
What is the best way to create rounded corners using CSS?

Can somebody pls give me the css code to make my corners rounded. Pls...

Community
  • 1
  • 1
johan
  • 2,319
  • 9
  • 27
  • 37

3 Answers3

1
.round {-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
background: #EEFF99;
behavior: url(/PIE.htc);

http://css3pie.com/

Jitendra Vyas
  • 148,487
  • 229
  • 573
  • 852
1

This will work on most modern browsers

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

http://border-radius.com/

JohnP
  • 49,507
  • 13
  • 108
  • 140
1

use images for the rounded corners for backward compatibility, for browsers that dont support highers css

ianace
  • 1,646
  • 2
  • 17
  • 31