100vh height css code example
Example 1: css 100% height
<!DOCTYPE html>
<html>
<head>
<title>100% height</title>
<style>
html,
body {
height: 100%;
margin: 0;
}
.container {
height: 100%;
background: #000;
}
</style>
</head>
<body>
<div class="container"></div>
</body>
</html>
Example 2: css vw not working on mobile
//In your js file:
window.addEventListener('resize', () => {
document.querySelector(':root').style
.setProperty('--vw', window.innerWidth/100 + 'px');
})
//Css
width: calc(100 * var(--vw));