Level 51
Try with this css rule
textarea {
resize: none;
}
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
Im Newbie in laravel so i need your help guys, i create a form with textarea inside but it always can be resize, how to make it static (cant resize again) ?
<div class="panel-body">
<form class="form-horizontal" role="form" method="POST" action="{{ url('/jenislayanan') }}">
{{ csrf_field() }}
<div>
<label for="username" class="col-md-4 control-label" name="username">Hello, Username</label>
</div>
<div>
<label class="col-md-4 control-label">Please feel free to give your opinion about us here</label>
</div>
<div>
<textarea name="notes" cols="50" rows="20"></textarea>
</div>
<div class="form-group">
<div class="col-md-6 col-md-offset-4">
<button type="submit" class="btn btn-primary">
<i class="fa fa-btn fa-sign-in"></i> Send
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
Try with this css rule
textarea {
resize: none;
}
Please or to participate in this conversation.