i want to ask how to create the 80 backgrounds only with html and CSS?
I have tried to do it but getting this result:
.bottom-background {
background-size: 100px 100px;
background-image: linear-gradient(to right, green 2px, transparent 2px), linear-gradient(to bottom, green 2px, transparent 2px);
width: 100%;
height: 50vh;
bottom: 0;
position: absolute;
perspective: 20px;
transform: rotateX(45deg);
}
<div class="bottom-background"></div>
I would like to have all centered like the first image.