Don't use 100vh for mobile responsive
Generally, we use height:100vh for fullscreen layout which is an easy hack and convenient way to get better design.
Example
.content {
height: 100vh;
}
But when we test our design on an actual device, we encounter several issues:
Mostly Chrome a...
blog.jobins.jp2 min read
Kushal Raj Shrestha
Very insightful.