I have a textarea displayed within an input in a table, but I am looking to resize it so that it completely fills the table cell up to the borders.
Here is the logic:
<textarea type="textarea" value="{{data.directRowNo}}" id = "abc"
></textarea></td>
The CSS code being used is as follows:
#abc{
width: 100%;
height: 443%;
box-sizing: border-box;
resize: vertical;
max-height: 500px;
}
Image reference:
https://i.sstatic.net/3tdBF.png
I am experiencing an issue with a line of separation appearing that I would like to avoid.