.. been trying to fit the textbox (auto adjust the textbox width) within HTML table\'s cell but no luck.. can anyone please help? thanks
What I have:
&l
"Textboxes" like are inline elements. You need to make this:
HTML:
CSS:
.myTextarea
{
display: block;
width: 100%;
height: 100%;
}
Example for you here.
And an updated example for you here. (With margins added and a table for you to see it working in)
Also, do you have some code we can see? textbox
isn't valid HTML so we have no idea what you're trying to use :)