1
I’d like to keep the left column fixed, and the right one mobile. There is a bootstrap class or another technique to solve this ?
I tried it this way :
<div class="row">
<div class="col-md-5" style="position: fixed;">
<p>conteudo fixo</p>
</div>
<div class="col-md-7">
<p>conteudo movel</p>
</div>
</div>
Upshot
- The left column disappears.
- The contents of the right column are deformed.
Which BS version are you using?
– Bruno Wego
You can’t use it
position:fixed
in this case. It does not obey some element Parent withposition: relative
. It relates tobody
. Now, I don’t understand what you want to do.– Diego Souza
@Zooboomafoo I believe what he wants is this http://v4-alpha.getbootstrap.com/examples/dashboard/
– Bruno Wego