<html>
<head>
<style>
body {
display: flex;
flex-wrap: wrap;
margin: 0;
zoom: 1.1;
}
div {
width: calc(100vw / 3);
height: calc(100vh / 3);
}
</style>
</head>
<body>
<div style="background-color: hsl( 0, 100%, 50%)"></div>
<div style="background-color: hsl( 40, 100%, 50%)"></div>
<div style="background-color: hsl( 80, 100%, 50%)"></div>
<div style="background-color: hsl(120, 100%, 50%)"></div>
<div style="background-color: hsl(160, 100%, 50%)"></div>
<div style="background-color: hsl(200, 100%, 50%)"></div>
<div style="background-color: hsl(240, 100%, 50%)"></div>
<div style="background-color: hsl(280, 100%, 50%)"></div>
<div style="background-color: hsl(320, 100%, 50%)"></div>
</body>
</html>