Fieldset and Mozilla Firefox – CSS

As you may know, <fieldset> creates a box with rounded corners, which looks really nice – in IE!

We can make it look almost as nice in Firefox very easily. Just add the following to your stylesheet:

/* This is to give rounded corners to fieldset in Firefox */
fieldset {
-moz-border-radius: 8px;
border-radius: 8px;
}

Leave a Reply

You must be logged in to post a comment.