I am working with materialize for my website and I have the following row:
<div class="row">
<div class="col m3">contenido pequeño</div>
<div class="col m6">Gran contenido</div>
<div class="col m3">contenido pequeño</div>
</div>
The reason for my question is to know, how do I make the col m3 be static and that only the col m6 can be scrolled, what I want to do is similar to facebook, I have tried to do the following:
style="position: fixed"
but I have not obtained results
How can I solve it? I thank you in advance