min-height does not work with body

Viewed 61171

Does min-height not work on body/html?

body, html
{
    min-height:100%;
}

Accomplishes absolutely nothing (firebug reports the body,html tags height does not change at all)

6 Answers

I solved the problem with just:

body {
    min-height: 100vh;
}

None of the above answers work for me.

What I did:

html, body {
  height: 100%;
  display: grid;
}
Related