Is it possible to set different object position properties for different sources within a picture element.
For example, the code below doesn't work:
<picture>
<source srcset="/media/cc0-images/surfer-240-200.jpg" media="(orientation: portrait)" style="object-fit: left top">
<source srcset="/media/cc0-images/surfer-240-200-ls.jpg" media="(orientation: landscape)" style="object-fit: bottom right">
<img src="/media/cc0-images/painted-hand-298-332.jpg" alt="Picture">
</picture>