I need to build a div with curved corner border, with out using any images in the corner. Is it possible?
I dont want to insert curved images in the corner, Please help me regarding this.
The border-radius CSS property is what adds the rounded corners. You can experiment with different values to get it the way you like. border-radius: 75px; If you want it to be a circle, add border-radius: 50%; .
Use the CSS border-radius property to add rounded corners to the table cells.
If you want to rely on webkit and mozilla browsers, you can use the following css commands:
.radius {
-moz-border-radius: 6px;
-webkit-border-radius:6px;
border-radius: 6px;
}
Details can be viewed here.
info on the CSS2 spec border-radius can be found here
These unfortunately do not work for ie.
you could go a javascript route for IE only by using niftycube which has the added benefit of supporting column height leveling without problems.
http://www.curvycorners.net/
Try this library out, it did wonders for me! It is a tested cross browser solution.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With