Horizontally resizable cards

Viewed 28

enter image description here

I'd like having horizontally resizable cards. Their height is fixed so their main content should become scrollable.

1 Answers

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

Related