2
My horizontal page is the way I want it:
But if you leave the vertical cell phone she’s getting like this:
How to make it vertical as follows?
Follows my code:
<div class="row">
<div class="col-xs-4 col-sm-4 col-md-4">
<a href="#">
<img src="~/Content/Images/btnHome.png" />
</a>
</div>
<div class="col-xs-4 col-sm-4 col-md-4">
<a href="#">
<img src="~/Content/Images/btnProduto.png" />
</a>
</div>
<div class="col-xs-4 col-sm-4 col-md-4">
<a href="#">
<img src="~/Content/Images/btnContato.png" />
</a>
</div>
</div>
I had a question seeing your code. The use two classes col (Sm and Md), helps responsiveness on screens of different sizes? Until then, I only used one class. Thank you if you can clear up my question. Abs
– Angelo Scali
@Angeloscali Yes, you can change the size of the grid columns according to the width of the device. The table of values of the widths and their prefixes you see here: http://getbootstrap.com/css/#grid-options
– Boni