
This is about Bulma | the Docs.
Is it a bug/feature/question or do you need help?
This is about the Bulma CSS framework
I have two columns. Inside one of them, I have a content div. When I set this div position: fixed, it overlays the column.
I expected it to be fixed and inside the column.
The text goes over the column.
By adding position: fixed the element is out of the flow, and is positioned relatively to the viewport.
Read more: https://cssreference.io/property/position/ https://developer.mozilla.org/en-US/docs/Web/CSS/position
Hi @jgthms this definitely works correctly, I agree, however, I do wonder what the best way is to fix a column in place.
This example shows a menu on the left which is located within a column and it would be nice if I could fix it in place.

I think what you're looking for is:
position: sticky;
top: 0;
Sticky is not supported by IE so maybe not the best.
Sticky is not supported by IE so maybe not the best.
Who cares about IE? 馃槅
Most helpful comment
Who cares about IE? 馃槅