2
Hello, I have a PHP page on which I am using Bootstrap to make a simple search screen.
<div class="container">
<img src="/img/logoSuivi.png" class="img-responsive center-block">
<div class="well col-md-3">
<div class="breadcrumb">
<form class="status">
<fieldset>
<div class="form-group">
<label for="repair-status-search">Ordre de service:</label>
<input class="form-control" id="code" name="code" type="text" placeholder="Ordre de service" value="" onkeypress="return searchKeyPress(event);">
</div>
</fieldset>
</form>
<button class="btn btn-success center-block" id="submit">Recherche</button>
<img src="/img/Preloader.gif" class="loader img-responsive center-block" style="display: none;">
</div>
</div>
</div>
http://www.bootply.com/kCqrqsHQ8V
On the page above you can see how he is..
PS: I’m using version 3.3.6
I would like to center horizontally and vertically from the div where it contains the Well class, how is it possible to accomplish this?
I can’t just use the center-block as I used in the image.
this will be http://pastebin.com/GLs2m1Eh ?
– Amadeu Antunes
With
.col-md-3
I never could, but using.col-md-4 .col-md-offset-4
I think you can center.– Guilherme SpinXO
The answer to this question can be found in the link below. See this link: https://answall.com/a/360579/138381
– FreeLa