Skip to content

Instantly share code, notes, and snippets.

@michaelwilhelmsen
Created June 2, 2014 15:06
Show Gist options
  • Select an option

  • Save michaelwilhelmsen/ebfb8458c519feba17c1 to your computer and use it in GitHub Desktop.

Select an option

Save michaelwilhelmsen/ebfb8458c519feba17c1 to your computer and use it in GitHub Desktop.
Create perfect squares with css. Second solution uses viewport, but is only supported with IE9+
#square {
width: 100%;
height: 0;
padding-bottom: 100%;
}
#square {
height: 100vh;
width: 100vh;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment