Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Other Code Puzzle: How to make a perfect grid on any screen. Reply To: Code Puzzle: How to make a perfect grid on any screen.

#175485
Paulie_D
Member

Aspect ratio would be automatic since you define the width and height the same..

e.g.

.box {
  width:10vw;
  height:10vw;
  float:left;
  border:1px solid lightgrey;
}

http://codepen.io/Paulie-D/pen/fakeD

I admit it’s a partial solution…there are still a lot of things to figure out.