Based on this tweet: https://twitter.com/iandevlin/status/538313179450060801
The use case: A photo of 5 people, art direction cuts off the left-most human for some variants. Then a <figcaption>John Doe, 2nd from left</figcaption> is not possible reliably.
Possible fix: Re-use the for attribute:
<figure>
<picture>
<source id="wide">
<source id="narrow">
</picture>
<figcaption for="narrow">John Doe, left-most</figcaption>
<figcaption><!-- default caption: -->John Doe, 2nd from left</figcaption>
</figure>
Based on this tweet: https://twitter.com/iandevlin/status/538313179450060801
The use case: A photo of 5 people, art direction cuts off the left-most human for some variants. Then a
<figcaption>John Doe, 2nd from left</figcaption>is not possible reliably.Possible fix: Re-use the
forattribute: