Hi! Very new to frontend, why does this happen?
I am building a website for my own business, but one of my card's text is overflowing.
My first (and only) idea was to use display:flex and flex-wrap:wrap, but it did not solve my problem.
Can someone help me?
9 Replies
overflow: auto;
?It makes a scrollbar?
you are setting a fixed height. so you either make the text scrollable or you don't limit the size for the text
But then the cards' heights won't be even, and i don't really want that.
then style the scrollbar for that element
There is a way to style a scrollbar?😅
yeah
scrollbar-width: thin; scrollbar-color: color1 color2;
for exampleThat is really cool, thank you.
:thumbup: