I want to make round corner box inside div tag. How can I do that? Can you give me any example?
You can use CSS:
.rounded-corners {
-moz-border-radius: 20px;
-webkit-border-radius: 20px;
-khtml-border-radius: 20px;
border-radius: 20px;
}
Then add the class ".rounded-corners" to your div using jQuery:
$("#div-id").addClass("rounded-corners");
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