Sections overlapping
I'm trying to solve an issue where two sections overlap (both sections have fixed heights and flex), but I can't seem to understand why it's happening.
This is the source code: https://github.com/GeorgeDash/br-f...
... and what it actually looks like (DevTools used):
3 Replies
I'm using Tailwind CSS.
since you said you are using fixed height i guess the content is bigger then set height so you get overflow. So you need to add
oveflow: auto;
on the children of that flex parent. Also why are you using fixed heights? that is just asking for troublesOK, I'll try with the overflow; I'm working with design...
š
Fixed!
Thank you and have a nice day/noon/evening!
š