Jan 24, 2006
Internet Explorer and Firefox interpret
<fieldset> differently. IE makes rounded corners; Firefox makes square ones. I just randomly found out how to make Firefox display rounded corners: Put -moz-border-radius: 7pt; in the style sheet (with the leading dash). I didn't implement this on my site, but I verified that it works. (via coldforged) #technology
Now...is there a way to make the legend appear through the fieldset border as it does in IE?
even with the -moz thing in the fieldset CSS thing does nothing to change the appearance. Planned to use it on my website http://www.FocusOnPanama.com/ but no luck yet
<fieldset style="-moz-border-radius: 7pt;"> content </fieldset>It should render correctly below:
And soo the story starts at the beginning... How do I get rounded fieltset in IE and FF :D
Thanks for the post!
Does anyone have a solution for IE7 or Chrome?
fieldset {
border-style: groove;
border-collapse: separate; }
But this gives square corners:
fieldset {
background-color: #6495ED;
border-style: groove;
border-collapse: separate;
border-width: 0.2em; }
Since I want a rounded corners, a background color and a border width I'm still looking for a solution for IE7. Any bright ideas anyone?
-khtml-border-radius: 7pt;
I'm still looking for an IE7 solution.