Skip to content

Instantly share code, notes, and snippets.

@blasten
Last active August 28, 2020 20:12
Show Gist options
  • Save blasten/3927cefe36810613c6695c89ff17c0dd to your computer and use it in GitHub Desktop.
Save blasten/3927cefe36810613c6695c89ff17c0dd to your computer and use it in GitHub Desktop.
Adds support to object-fit in Edge.
.fit {
position: absolute;
top: 0px;
left: 0px;
bottom: 0px;
right: 0px;
width: 100%;
height: 100%;
object-fit: cover;
}
/* Polyfill for Edge */
_:-ms-lang(x), _:-webkit-full-screen .fit {
top: -10000px;
right: -10000px;
bottom: -10000px;
left: -10000px;
margin: auto;
min-width: 100%;
min-height: 100%;
zoom: 0.1;
width: auto;
height: auto;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment