Fieldset allways round corners
April 15, 2011 1 Comment
If you have you ever used fieldset in your web projects you will know that it looks different in every browser. BUMMER and if you try to style it it looses its round corners and highlights. Thats is so annoying. So i’ve decided to do something about it. Fielset now we wil all know your secrets. (c:
As far as I know, it’s impossible to solve this dilemma with CSS2 alone, so after some consideration I’ve decided to try with webkit and some other tricks as the last resort. And SUCCESS.. round corners in all browsers, I love it.
her’s what i’ve done.
To my CSS i’ve added following
FIELDSET { padding:10px; border-color:Fuchsia; -moz-border-radius: 4px; border-radius: 4px; -webkit-border-radius: 4px; } LEGEND { text-transform:uppercase; }
Round Fuchsia Corners, so pretty ,.. (c:
Its very good, Thank you brother.