我想开始在我的网站上使用 WebP。我正在转换如下所示的代码:
<img src="example.jpg" width="100" height="100" alt="Example">
要编写如下所示的代码:
<picture>
<source srcset="example.webp" type="image/webp">
<img src="example.jpg" width="100" height="100" alt="Example">
</picture>
放置width
和height
属性的正确位置在哪里?即使选择了图像,仅在元素中使用height
andwidth
属性是否有效?<img>
<source>