I have a% bootstrap%, how do I control the input of input without losing responsiveness?
Example w3schools form-inline bootstrap
<form class="form-inline" role="form">
<div class="form-group">
<label for="email">Email:</label>
<input type="email" class="form-control" id="email" placeholder="Enter email">
</div>
<div class="form-group">
<label for="pwd">Password:</label>
<input type="password" class="form-control" id="pwd" placeholder="Enter password">
</div>
<div class="checkbox">
<label><input type="checkbox"> Remember me</label>
</div>
<button type="submit" class="btn btn-default">Submit</button>
I've already tried
form-inline
in the input and it works, it increases the size of the field, but it loses responsiveness, I already tried to put style="width: 300px"
inside a <div class="form-group">
tag, therefore <div class="col-sm-5">
that is, it just does not work on form-horizontal
In short, I want exactly the functionality of a form-inline
, the only problem is that I can not control the form inline
of inputs without losing responsiveness.