Hi,
I'm sure some of/a lot of you like using fieldsets... they look especially nice in IE but not particularly nice in Mozilla.
I've been writing a registration system recently and have been using some fieldsets but didn't like the look of them in Mozilla, so went on the hunt for some CSS or a hack.
Found this:
Makes fieldsets look very nice in Mozilla as well as IE
Just thought I'd share it with you all
Craig.
I'm sure some of/a lot of you like using fieldsets... they look especially nice in IE but not particularly nice in Mozilla.
I've been writing a registration system recently and have been using some fieldsets but didn't like the look of them in Mozilla, so went on the hunt for some CSS or a hack.
Found this:
Code:
fieldset {
-moz-border-radius: 6px;
border: 1px solid #CFCFC5;
}
label {
display: block;
font-size: 8pt;
font-weight: bold;
font-family: Verdana, Arial, Helvetica, sans-serif;
padding-top:1em;
}
legend {
color: #6085B2;
font-weight: bold;
margin: 0;
}
<![if !IE 5]>
fieldset {
border: 1px solid #CFCFC5;
padding: 20px;
margin-top: 10px;
margin-bottom: 1px;
}
<![endif]>
Makes fieldsets look very nice in Mozilla as well as IE

Just thought I'd share it with you all

Craig.