Hi,
I am struggling with a div that overflows the height of its parent
instead of showing a scroll bar.
I am trying to design a single page full height and width with CSS
grid. Inside one of the regions, there is a list that should show with
a scrollbar but it doesn't.
How could I constrain the
hey Fred,
Try adding this to grid-content
.grid-content {
overflow-y: scroll;
height: 200px;
}
good luck!
Sandy
On 2020-12-29 12:00 p.m., Fred Janon wrote:
Hi, > > I am struggling with a div that overflows the height of its parent
> instead of showing a scroll bar. > > I am tryin