2
Using the classes col-Xs-... which means extra small you can determine how to render the elements on the screen. If you wanted an element to occupy the entire screen in the Xs resolution, you would apply it like this col-xs-12
if either two elements occupying the entire screen would be col-xs-6
. Remembering that these classes are referenced within a div. The best reference on this will always be on documentation:
img {
max-width: 240px;
}
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<div class="container-fluid">
<div class="row">
<div class="col-xs-6">
<img src="https://d26lpennugtm8s.cloudfront.net/assets/blog_es/ideia.jpg">
</div>
<div class="col-xs-6">
<img src="https://d26lpennugtm8s.cloudfront.net/assets/blog_es/ideia.jpg">
</div>
</div>
</div>
Would have an example ?
– Matheus Vitor
@Pedroserpa if this is your answer, transfer it from the comment to the answer, just click edit and add the code
– Gabriel Gonçalves
I already edited. I’m sorry, I was lazy :)
– Pedro Serpa