I have a simple yet frustrating problem. I need to use textarea in a column so i placed it inside a row then a column like below code:
<div class="row"><div class="col-md-12">
<table class="table table-bordered " id="RezAddress" >
<tr>
<th colspan="2" align="left">'.$menu[56].'</th>
</tr>
<tr>
<td colspan="2" align="left"><textarea name="address" rows="3" id="address" style="min-width: 100%">'.$address.'</textarea></td>
</tr>
</table>
</div></div>
So here i set textarea width as wide as column. Now what i wnat to do is i don't want that textarea overflow that column when i drag from corner.Is it possible? I tried max-width and with attributes as well. No solution so far.