Reputation: 31
how to make round corners for fieldset using html with out using any images
Upvotes: 0
Views: 6227
Reputation: 115
The only way to do it without images is to use CSS3, which will work for all modern browsers (even IE9). It is really simple.
fieldset{
border-radius: 5px;
padding: 5px; /*Just to prevent the content from being to close to the corner*/
}
You can even just target specific corners in the way
Upvotes: 1
Reputation: 64943
If you're targeting CSS3-enabled Web browsers, you can use border-radius CSS rule.
Check this article:
Upvotes: 2