css width 100 code example
Example 1: width css property
width: 300px;
width: 25em;
width: 75%;
width: max-content;
width: min-content;
width: fit-content(20em);
width: auto;
width: inherit;
width: initial;
width: unset;
Example 2: width css
width: 100vh;
width: 100vw;
Example 3: 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>