Hallo,
In a form I have several text or checkbox inputs with their
appropriate labels. I'd like to keep label and input together, so I
connect them with a , like:
<input type="checkbox" name="h" value="1" id="chk"/> <label
for="chk">Schreibweisentolerant</label>
Apparently this doesn't work in Firefox 2. It works in IExplorer and
Opera. As well I tried:
<input type="checkbox" name="h" value="1" id="chk"/><label
for="chk"> Schreibweisentolerant</label>
Somehow Firefox seems to think that he can break anyway between tags.
If I placed another within the word "Schreibweisentolerant"...
<input type="checkbox" name="h" value="1" id="chk"/><label
for="chk"> Schreibweisen tolerant</label>
....Firefox would keep the two parts of the word together.
Is there any way to correct this?
Best regards,
Christian Kirchhoff