Note from 19 July 2022

💡 CSS idea of the day:

:root {
  --full-height: 100vh;
}

@​supports(height: 100dvh) {
  :root {
    --full-height: 100dvh;
  }
}

Clever? Stupid? Old?