DEV Community

Discussion on: Hooray! I Created my First Portfolio! 📂🎉

Collapse
 
zxcodes profile image
Mohammed Farmaan.

It's awesome. Some great effort there. Btw I have a question. How can that scrollable list be achieved? like you've done with your music section? It's like a fixed container but it has got items scrolling in it.

Collapse
 
madza profile image
Madza

Thanks for the kind words! 😉
The trick for the scrollbar to appear for fixed divs is first set the specific height or you can also use max-height if you don't want to show empty space in case of fewer items. And then use overflow-y: scroll to display scroll when the content exceeds the height of the containing div. 😉

Collapse
 
zxcodes profile image
Mohammed Farmaan.

Thanks for this. I've been struggling to get it work since a few days. Really appreciate it.😄

Thread Thread
 
madza profile image
Madza

No worries, happy to help! 🙏❤