1
Hello, I have a form where I have one TextArea
. But the Width
is no more than 283px
.
When I decrease, it decreases correctly, now when I increase, it doesn’t work.
I set the size as 400px
, however, when inspecting the code by Google, I see that I have only 283px
.
Follows the form in question:
<div class="container">
<h4> Descriçao da Solicitação</h4>
<div class="col-md-12">
@Html.TextAreaFor(model => model.Descricao, new { @class = "form-control", style = "width:400px;", placeholder = "Digite a descrição de sua solicitação aqui" })
@Html.ValidationMessageFor(model => model.sLotacao)
</div>
<br/><br/>
<div class="form-group">
<div>
<input type="submit" value="Salvar" class="btn btn-success btn-lg" />
</div>
</div>
<br />
<h5> Requerido a concessão da vantagem assinada nos termos da legislação em vigor aplicável ao assunto.</h5>
</div>
How to proceed?
How does the
TextArea
in the codeHtml
?– Jothaz
It is editable, but I can only change the height( dragging with the mouse), the width does not change.
– Randrade