Possible Duplicate:
Multiple select options in one row
I have the following code but it generates it on separate lines, and I want it to be on a single line (only filling the parent which is not shown).
Also, how can I remove the text area's re-size feature?
<div id="search" align="left" style="width:100% height="100%">
<select>
<option>Beers</option>
<option>Cigars</option>
<option>Wines</option>
</select>
<div align="right">
<form>
<textarea style=width:"100%" height="100%" cols="0" "rows="0"></textarea>
</form>
</div>
</div>