I would like to keep the left column fixed, and the right mobile. Is there a bootstrap class or another technique to solve this?
I tried the following:
<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>
Result
- The left column disappears.
- The content of the right column deforms.