[html] scroll both ways

cryk

Info


Created
2 months, 17 days ago
Creator
cryk
Favorites
0

Profile


STUDIES

i struggled with doing a horizontal scroll so this is a note to self, but please feel free to reference ! this isnt exactly a full blown code, moreso a study/snippet
please inspect to yoink im okay with you yoinking


Scroll from left to right

NOTES:
uses overflow x and flex no wrap class. uses max height as well

overflow-x: scroll;



Scroll up and down

NOTES:
uses overflow y and does not use flex class. uses max height as well
remove max-height in order to make it just overflow and no scrollbar.

overflow-y: scroll ; overflow-x: hidden ; max-height: 200px;