R.K.S.Nageswararao
R.K.S.Nageswararao

Reputation: 31

how to make round corners for <fieldset> using html with out using any images

how to make round corners for fieldset using html with out using any images

Upvotes: 0

Views: 6227

Answers (2)

Cliff Brown
Cliff Brown

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

Matías Fidemraizer
Matías Fidemraizer

Reputation: 64943

If you're targeting CSS3-enabled Web browsers, you can use border-radius CSS rule.

Check this article:

Upvotes: 2

Related Questions