Fix Bootstrap Column

-1

Hello,

I have 2 columns, one with a col3 and one with a col9. I would like col9 to be fixed and col3 to have scrolling.

How can I do this with bootstrap?

    
asked by anonymous 05.08.2015 / 22:30

1 answer

0

You can try adding the "fixed" attribute on the div

Ex:

<div class="col3"></div>
<div class="col9 fixed"></div>
    
05.08.2015 / 22:54