How can I set the textarea size to match the space present inside a cell of table ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How can I set the textarea size to match the space present inside a cell of table ?

I have a table with some cells one cell contains a textarea I want to know is it possible to force the textarea to occupy the cell completely my problem is the size of cell is dynamic it changes on request but the textarea dosent and leaves some gap textarea { width: auto; height: auto; } dosent work

2nd Apr 2017, 2:21 PM
Viperx7
2 Answers
+ 11
Include the following CSS: textarea { width: auto; height: auto; } or try using vh and vw units with the table and the same for the textarea
2nd Apr 2017, 2:29 PM
Chirag Bhansali
Chirag Bhansali - avatar
+ 1
try the following: textarea { display: block; }
2nd Apr 2017, 7:23 PM
Naeem Rind
Naeem Rind - avatar