Creating gradient layout using css grid
HTML CODE < body > < div class = "container" > < div class = "box box1" >Box 1</ div > < div class = "box box2" >Box 2</ div > < div class = "box box3" >Box 3</ div > < div class = "box box4" >Box 4</ div > < div class = "box box5" >Box 5</ div > < div class = "box box6" >Box 6</ div > < div class = "box box7" >Box 7</ div > </ div > </ body > CSS CODE * { padding: 0 ; margin: 0 ; box-sizing: border-box ; } .container { display: grid ; height: 100 vh ; ...