Created
May 5, 2019 09:35
-
-
Save Nitin-Daddikar/ce95dccd7eb614a735387b9508406e21 to your computer and use it in GitHub Desktop.
vmax support in IE
This file contains hidden or 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
| .content{ | |
| /*supports modern browsers but not IE*/ | |
| width: 10vmax; | |
| /*calculate vmax for IE */ | |
| height: calc(10 * (1vw + 1vh - 1vmin)); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment