Created
August 29, 2016 17:52
-
-
Save brandonb927/e518305ab29adc8b17e0056215826f36 to your computer and use it in GitHub Desktop.
Makes a square as large as possible in the viewport without overflowing and centres it vertically and horizontally - https://twitter.com/mikeriethmuller/status/769922629260181504
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.elem { | |
width: 100vmin; | |
height: 100vmin; | |
margin-top: calc((100vh - 100vmin)/2); | |
margin-left: calc((100vw - 100vmin)/2); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment