我正在使用<picture>
标签。我的目标群体使用现代浏览器,因此只要Firefox 支持 WebP,就无需使用该<img>
标签。
现在:
<picture>
<source srcset="image-200px.webp 1x, image-400px.webp 2x" type="image/webp">
<img src="image-200px.jpg" alt="Description">
</picture>
很快:
<picture>
<source srcset="image-200px.webp 1x, image-400px.webp 2x">
</picture>
有没有办法在不使用标签时实现alt
属性?<picture>
<img>