Aspnet mvc 4 Bootstrap v3.3

1

I am developing in asp.net mvc 4 and I have the following query:

with this code:

<div class="col-md-12">
    <label>Ejemplo</label>
    <input type="text" name="name" class="form-control"/>
</div>

It should show a text box about the size of almost the entire screen, but only a part is shown.

To what is it ??? and as aria to display on almost the entire screen with indicates in the bootstrap documentation.

    
asked by Luis Vega 13.11.2017 в 18:57
source

1 answer

0

try this copy and paste

    <div class="form-group col-md-12">
<label>Ejemplo</label>
    <input type="text" name="nombre">
 </div>

<div class="form-group col-md-12">
  <label class="control-label">Apellido Paterno</label>
  <input type="text" class="form-control input-sm" name="Datos[apellidoPaterno]">
</div>

tell me if it's okay

    
answered by 13.11.2017 в 19:02