使用srcset和size时,width和height属性有什么作用?

时间:2016-05-09 21:27:23

标签: html css responsive-images

如果我们使用的是srcsetsizes属性,那么将src属性指定为后备广告仍然很有用。同样,我认为旧的浏览器也会利用widthheight属性(如果已指定)。但是做现代浏览器吗?

例如:

<img
   src="foo100x100.jpg"
   srcset="foo100x100.jpg 100w, foo500x500.jpg 500w, foo900x900 900w"
   sizes="100vw"
   width="100"
   height="100"
   alt="example"
>

此示例中的widthheight属性是否适用于现代浏览器?

1 个答案:

答案 0 :(得分:1)

根据实验,它的行为就像您指定了widthheight CSS属性(以像素为单位)。但是,它可以被您自己的CSS覆盖。

img {
  width: 200px;
  /* height will be 100px because of the HTML attribute */
}
<img
     src="http://placehold.it/100x100"
     srcset="http://placehold.it/100x100 100w, http://placehold.it/500x500 500w"
     sizes="100vw"
     alt=""
     width="100"
     height="100"
>

这有点令人失望,因为我希望现代浏览器在下载图像之前使用widthheight来确定图像的宽高比,以避免布局以下内容在页面加载时跳转。