For my project I'm trying make 3 blocks with a rotation of 9 degrees. Unfortunately I get some white space and I can't get rid of it.
Example
.homeholder {
float: left;
position: relative;
width: 100%;
height: 100vh;
overflow: hidden;
}
.homeholder .box {
float: left;
position: relative;
width: calc((100% / 3) - 5px);
height: 100%;
transform: rotate(9deg);
margin-right: 7px;
}
.homeholder .box.restaurant {
background-color: red;
}
.homeholder .box.rooms {
background-color: blue;
}
.homeholder .box.about {
margin-right: 0px;
background-color: green;
}
<div class="homeholder">
<div class="box restaurant"></div>
<div class="box rooms"></div>
<div class="box about"></div>
</div>