I am looking to design a website with grid layouts. I started by downloading a template and making some edits to it. Initially, there were only 6 grid boxes, but I added 3 more. However, when I run the code, my additional grids are merging with the first 3 grids. Below is the HTML code I used for creating the grid:
.heading h3 {
font-size: 45px;
text-align:center;
text-transform: uppercase;
color: #000;
}
...
grid1 i.fa {
font-size: 40px;
color: #146eb4;
}
<!-- Grid Structure -->
Upon running this code, I noticed that the bottom and top grids appear fine, but the middle one is joining with the first grid. How can I prevent this from happening? Is there a way to add spacing between the grids?