bonjour
j'utilise le tag picture pour proposer au navigateur soit une image webp ou jpg
comment placer le width et le height
comme ceci?
1: seulement sur img
ou 2: sur les deux srcset
ou 3: sur srcset et img
un grand merci
Modifié par _laurent (17 Mar 2022 - 09:57)
j'utilise le tag picture pour proposer au navigateur soit une image webp ou jpg
comment placer le width et le height
comme ceci?
1: seulement sur img
<picture><source srcset="xxx.webp" type="image/webp">
<source srcset="xxx.jpg" type="image/jpeg">
<img src="xxx.jpg" width="180" height="285"></picture>
ou 2: sur les deux srcset
<picture><source srcset="xxx.webp" type="image/webp "width="180" height="285">
<source srcset="xxx.jpg" type="image/jpeg" width="180" height="285">
<img src="xxx.jpg" ></picture>
ou 3: sur srcset et img
<picture><source srcset="xxx.webp" type="image/webp" width="180" height="285">
<source srcset="xxx.jpg" type="image/jpeg" width="180" height="285">
<img src="xxx.jpg" width="180" height="285"></picture>
un grand merci
Modifié par _laurent (17 Mar 2022 - 09:57)