Form formating issues
-
This is very puzzling. I have isolated the problem thus:
I have a form spread out over 4 tabby tabs.
I change the font-style (for illustration purposes) in any of the 4 tabs.
<label for="test" style = "font-style: italic;" >Test: </label><input id="test" name="test" type="checkbox" value='1' />However , I can only set the label width on the first tab.
<label for="test" style = "width: 150px;" >Test: </label><input id="test" name="test" type="checkbox" value='1' />Put another way,
style = "width: 150px;"is ignored after the first tab, but
style = "font-style: italic;"works on any tab.
How can I set the width of the label on tabs > 1 ?
The topic ‘Form formating issues’ is closed to new replies.