quote:
Originally posted by CookieRevised
<table><tbody><form><tr><td><select></select></td></tr></form></tbody></table>
But that's not valid HTML
The more correct solution is using CSS to just remove the spacing (margins):
<form style="margin-top: 0px; margin-bottom: 0px;"><table><tbody><tr><td><select></select></td></tr></tbody></table></form>
So...
code:
<form name="CholiWasHere" style="margin-top: 0px; margin-bottom: 0px;">
<select size="1" name="language" class="language" onchange="test();">
<option style="color:gray;">Select your language here</option>
<option value="fr">Francais</option>
</select></form>