The latest CSS "border-radius" property allows you to easily create rounded corners in your web designs, without the need for corner images.
Support only Firefox, Safari/Chrome, Opera and IE9.
Example 1
CSS Code
Copy and paste the below code into your head section.
#example1 {
width:125px;
height:25px;
padding:25px;
color:#FFF;
background:#000;
border-radius: 15px;
-moz-border-radius: 15px;
}
Support only Firefox, Safari/Chrome, Opera and IE9.
Example 1
CSS Code
Copy and paste the below code into your head section.
#example1 {
width:125px;
height:25px;
padding:25px;
color:#FFF;
background:#000;
border-radius: 15px;
-moz-border-radius: 15px;
}