Is it possible to make a CSS-div resemble the board shown in this image ?
What is this particular design style referred to as?
I experimented with the skew
property but couldn't quite achieve the desired effect.
.board {
width: 325px;
background: #ddd;
border: 1px solid #ccc;
height: 300px;
margin-left: 300px;
transform: skew(5deg, 40deg);
}