Overflow problem with flex-end

I’ve encountered a problem using flex-end, when i use flex-end on a flex-container the overflow rule doesn’t seem to work in contrast to flex-start, here is a demonstration:

Is it a bug or i am doing something wrong, can you explain please :slight_smile:

Instead of flex-end you will probably have to use row-reverse to achieve the same effect.

display: flex;
flex-direction: row-reverse;
overflow: auto;
1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.