R
R
Ruslan Absalyamov2018-11-28 17:11:53
css
Ruslan Absalyamov, 2018-11-28 17:11:53

How to make flex so that there is a lot of data, then it goes to scroll?

I have such a problem with flex that even though I have

html, body {
  height: 100%;
  width: 100%;
}

This is done so that the height is always placed when there are few records, so that there is no such effect. 5bfea19297c88742668289.png
But if you set height: 100%, then this effect comes out with a lot of records.
5bfea1e278728472872948.png
How to be, I use the code to style the record
.row-tiles {
                display: flex;
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: space-between;
            }

Answer the question

In order to leave comments, you need to log in

1 answer(s)
N
nvdfxx, 2018-11-28
@nvdfxx

body {
    overflow: hidden
}

.row-tiles {
    overflow: auto
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question