...I being checking the new bootstrap 4 flexbox grid
https://v4-alpha.getbootstrap.com/utilities/flexbox/
And I have some questions about it...I try to understand how use the responsive flexbox classes created by bootstrap...I have something like this:
<div id="start" class="d-flex flex-row justify-content-center">
<img src="img/logocolor.gif" class="img-fluid" alt="Responsive image">
<div class="card border-0">
<div class="card-block">
<h4 class="card-title text-center">DERMATOCOSMATRÍA PROFESIONAL</h4>
<p class="card-text">Somos un equipo multidiciplinario que se encarga de atender y solucionar las inquietudes<br> y necesidades del paciente desde un punto de vista integral; clínico y cosmético.</p>
<a href="#" class="card-link">Another link</a>
</div>
</div>
</div>
And it's working on desktop device...but when I try to view my page on smaller device like cellphone I try to use...for example..the responsive class for small size "flex-sm-wrap" but nothing happens on small view...but the changes happens on the desktop size!!! I don't understand why it's taking the classes that should work on small devices, and it's using them on desktop size ...it's very confusing....How should I specify the classes for every device size ? Mi objetive is build a responsive web using this bootstrap 4 flexbox grid.Thanks for your help !