Javascript
1 2 3 4 5 6 7 8 9 |
<script type="text/javascript"> let vh = window.innerHeight * 0.01; document.documentElement.style.setProperty('--vh', `${vh}px`); window.addEventListener('resize', () => { let vh = window.innerHeight * 0.01; document.documentElement.style.setProperty('--vh', `${vh}px`); }); </script> |
CSS
1 2 3 4 |
selector { height: 100vh; height: calc(var(--vh, 1vh) * 100); } |
参考サイト
https://codepen.io/team/css-tricks/pen/vapjge
コメント