Object fit https://css-tricks.com/almanac/properties/o/object-fit/
Edge fallback: https://medium.com/@primozcigler/neat-trick-for-css-object-fit-fallback-on-edge-and-other-browsers-afbc53bbb2c3#.2vxhvx9w1
img {
width: 250px;
object-fit: none;
object-position: 50% 50%; /* default value: image is centered*/
object-position: 0 0; /* positioned top left of the content box */
}