I'd like having horizontally resizable cards. Their height is fixed so their main content should become scrollable.
I'd like having horizontally resizable cards. Their height is fixed so their main content should become scrollable.
On the container where you have the text you can try to add this code:
overflow: hidden;
overflow-y: scroll;
If you set a fixed height for the container, now with overflow: hidden you will hide everything go outside of the container, and with overflow-y: scroll you will allow a vertical scroll to this container where you have the text