Adding a grid with responsive square to our web page is simple than most of us think.
CSS
.container{
width: 100%;
background: lightgray;
display: inline-block;
}
.container div {
float:left;
width: 30%;
padding-bottom: 30%; /* = width for a 1:1 aspect ratio */
margin:1.66%;
background-color: #1E1E1E;
}
