I have a form in which you can perform three actions: Enter employee, cancel and Save.
I use bootstrap to create the form and the buttons as I show in the image
The problem is that I would like the three buttons aligned horizontally at the same level (not as shown in the figure in which the employee input button is higher) and always leave the input button used on the left side and both remaining buttons on the right side and that by showing them at a lower resolution the three are aligned vertically one under the other ... but I can not get it.
This is the code of the buttons I use MVC ASP.NET with razor views engine
// Boton Ingresar Empleado
<div class="form-group">
<div class="col-md-10 col-md-offset-4">
<div class="col-md-10">
<input type="submit" value="Ingresar Empleado" class="btn btn-primary" id="sentInfo" />
</div>
</div>
</div>
// Boton Cerrar y Guardar Formulario
<div class="form-group">
<div class="col-md-10 col-md-offset-7">
<button type="button" onclick="location.href='@Url.Action("TipoEvento", "Home")'" class="btn btn-danger" id="btn-cancelar">
Cancelar
<span class="glyphicon glyphicon-remove-sign"></span>
</button>
<button type="submit" value="Guardar" class="btn btn-primary">
Guardar
<span class="glyphicon glyphicon-chevron-right"></span>
</button>
</div>
</div>
and the form I define it like this:
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-2">