Hi,
I’m bug hunting my first developement. Everything works great apart from a multi line text field when viewed in IE6, The field is closly situated between a number of other page elements. Everything is fine in IE7, firefox Safari etc but IE6 places some kind of margin around the text field which screws the alignment for the whole page. This works perfectly as far as keeping everything in alignment ...
<div id="answer1">
<FORM NAME="answer">
<textarea name="text" class="answerNS{CSS_CLASS}">{ANSWER}</textarea>
</div>
<div id="{ANSWERMARGIN}"> </div>
... but the form fails to work because theirs no closing form tag. Adding the tag makes the form work but now I have this “margin-bottom” type boarder of about 20 pixcels which I can’t get rid of
<div id="answer1">
<FORM NAME="answer">
<textarea name="text" class="answerNS{CSS_CLASS}">{ANSWER}</textarea>
</FORM>
</div>
<div id="{ANSWERMARGIN}"> </div>
browser querks is a new thing for me, so I’d really appreciate any tips you could give me.
Thanks
Giles
I’m bug hunting my first developement. Everything works great apart from a multi line text field when viewed in IE6, The field is closly situated between a number of other page elements. Everything is fine in IE7, firefox Safari etc but IE6 places some kind of margin around the text field which screws the alignment for the whole page. This works perfectly as far as keeping everything in alignment ...
<div id="answer1">
<FORM NAME="answer">
<textarea name="text" class="answerNS{CSS_CLASS}">{ANSWER}</textarea>
</div>
<div id="{ANSWERMARGIN}"> </div>
... but the form fails to work because theirs no closing form tag. Adding the tag makes the form work but now I have this “margin-bottom” type boarder of about 20 pixcels which I can’t get rid of
<div id="answer1">
<FORM NAME="answer">
<textarea name="text" class="answerNS{CSS_CLASS}">{ANSWER}</textarea>
</FORM>
</div>
<div id="{ANSWERMARGIN}"> </div>
browser querks is a new thing for me, so I’d really appreciate any tips you could give me.
Thanks
Giles