how to
make a container column scrollable
1 make sure your container is in columns type! (container divider into 2 columns)
2
- :nth-child(1) means the first column
- :nth-child(2) means the second column
3 add embed element and paste this code for first column scrollable:
<style>
#container01 > .wrapper > .inner > :nth-child(1){
overflow-x: hidden;
overflow-y: scroll;
height:10em;
}
</style>
outcome for first column scrollable
add this code if you want the second column scrollable:
<style>
#container01 > .wrapper > .inner > :nth-child(2){
overflow-x: hidden;
overflow-y: scroll;
height:10em;
}
</style>
outcome for first column scrollable