how to

make a container column scrollable

1 make sure your container is in columns type! (container divider into 2 columns)
F

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 f

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 f

Edit
Pub: 15 May 2022 04:43 UTC
Views: 1065