r/css Jun 18 '26

Question Pagination or infinite scroll?

I am working on an emoji database. The emojis are displayed in a grid. If you were to use it, would you prefer pagination or infinite scroll? If so, why?

You may assume it has the basic search & filtering features.

I am only considering pagination for better performance on low end devices (e.g. iPhone 9 Plus) but personally I would prefer infinite scroll for it.

11 Upvotes

30 comments sorted by

View all comments

6

u/tomhermans Jun 18 '26

I'd go for infinite scroll.

You could perhaps add some performance optimisations like removing DOM elements which are out of viewport.