View Full Version : How do i put 2 TEXT AREAS next to each other


rubyred9390
04-18-2004, 06:48 PM

rubyred9390
04-18-2004, 06:50 PM
please! :froggie2:

kittycat
04-18-2004, 06:55 PM
Try a table.
<table>
<tr>
<td> textarea1 code </td>
<td> textarea2 code </td>
</tr>
</table>

rubyred9390
04-18-2004, 07:24 PM
thx!

Calidris
04-18-2004, 09:29 PM
<style type="text/css">
textarea { display: inline; }
</style>

nice CSS way :)