使用带< img>的响应式图像集时如果没有断点(即没有sizes属性),您通常会提供不同分辨率的同一图像的多个版本,然后使用像素密度语法在srcset属性中定义,例如1x,2x,3x
但是,通常图像的1x版本与src属性中已定义的图像相同,因此有点多余.因此我想知道 – 正在定义< img>的1x版本.在srcset参数中真的有必要/强制吗?
仅使用时
<img src="http://placehold.it/350x150" srcset="http://placehold.it/700x300 2x">
代替
<img src="http://placehold.it/350x150" srcset="http://placehold.it/350x150 1x,http://placehold.it/700x300 2x">
然后至少FireFox将正确显示350×150图像,并且一旦缩放级别/ dppx> 1它将使用700×300图像.
解决方法
Specification说:
If child has a
src
attribute whose value is not the empty string and source set does not contain an image source with a density descriptor value of 1,and no image source with a width descriptor,append child‘ssrc
attribute value to source set.
这意味着如果它与src属性相同,则可以省略1x源,但如果使用宽度描述符则不能这样做.