Responsive screens should to be based in the height also?
hey, I want to understand one think. Creating a responsive design I should to focus in the viewport height also?
2 Replies
For example, I have a container that should take 100% of the viewport height, but some components aren't shrinking well because I'm using a grid, and I don't know a better way to do it. What should I do?
if your content is large intrinsically, it doesn't matter if you have a
min-height: 100vh;
on the container, because the content is larger than that, therefore naturally it causes scrolling. the fact it's a grid shouldn't have anything to do with it.
but we can't give a specific solution unless you share the code