Skip to content Skip to sidebar Skip to footer

Overflow: Scroll Not Working In A Specific Column Grid With Bootstrap 4

I have 3 columns in my main tag (
). The first column has a table with many rows. I want that column to be vertically scrollable while stay

Solution 1:

Try replacing CSS for #please-scroll::

#please-scroll{
  height: calc(100vh - 110px);
  overflow-y: scroll;
}

Post a Comment for "Overflow: Scroll Not Working In A Specific Column Grid With Bootstrap 4"