carlos-sanchez
12/8/2015 - 3:43 PM

Object fit https://css-tricks.com/almanac/properties/o/object-fit/ Edge fallback: https://medium.com/@primozcigler/neat-trick-for-css-objec

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 */
}