I have a form with 3 fieldset’s and all are hidden.
Depending on user’s choice the particular fieldset is set visible.
Problem is- how to fill the spaces occupied by the hidden fieldset ? Because each time a fieldset is set visible the space occupied by first fieldset is also visible.
I tried using –
style=”visibility: hidden; overflow : auto”.
Thanks for upcoming suggestions.
Instead of hiding them, set their display property to
nonelike this:This will prevent them from taking up space when they are not visible. To make them visible, set the display property to
blocklike this: