Notice: Undefined variable: string in /home/u665484253/domains/wpcodekit.com/public_html/wp-content/themes/twentytwenty-child/functions.php on line 61
How to size 100% width and height in html?
<html>
<head>
<style>
.outer{
width: 100%;
height: 100vh;
background:red;
}
</style>
</head>
<body>
<div class=”outer”>
</div>
</body>
</html>