In the past we've used the following shorthand to define the background of an element:
<div style="background: url('http://lorempixel.com/400/200/') center center no-repeat / cover;">
</div>
This method stopped working in Chrome, Edge & Firefox very recently & no image is displayed. Opera & Safari appear unaffected.
This approach works on Chrome, Edge & Firefox:
<div style="background: url('http://lorempixel.com/400/200/') center center no-repeat; background-size: cover;">
Fiddle here: https://jsfiddle.net/6h81mzou/
What has removed support for this shortcut? To my knowledge it was working yesterday.
Is it even valid?