Reputation: 10695
I am working on the HTML form. Form includes fieldsets and legends.
Here is my jsfiddle.
I want to display answer choices in front of legends. What style should be given to legend or fieldset ?
Upvotes: 1
Views: 1848
Reputation: 123397
example fiddle: http://jsfiddle.net/PYmGG/3/
Relevant CSS
legend, label, input { float: left }
fieldset { height: auto; overflow: hidden;
/* float clearing applied to fieldsets */ }
You may want to give some margin-right
to legend
element and give some space between fieldsets
applying a margin-bottom
on them
Upvotes: 2