I'm relatively new to HTML and I'm working on a platform using Apps Script. This platform is designed to analyze specific attributes of users, which are accessed through a window containing all the relevant information about that user. The data is imported via Google Sheets, which acts as our database.
My issue lies with a section labeled 'description' which can be quite lengthy in terms of character count. To accommodate this, I am using a textarea element to allow for line breaks. However, as I adjust the width of this textarea, it impacts other blank areas around it. Is there a way to make this description area independent from other elements?
Below is the code snippet:
<tr>
<td class="modal-table-label" style="width:100px"><label for="description" style="width:100px">Desc. Regra</label></td>
</tr>
<tr>
<td>
<div>
<textarea name="description" id="description_form" value="" class="info-input-sm" style="width:350px;" rows="5" cols="500" > </textarea>
</div>
</td>
</tr>
Additionally, attached below is an image illustrating the problem at hand: