我使用http://placehold.it来放置图片大小,但我不知道如何插入图片,例如:
<img src="image/abc.png" alt="" />
当我使用placehod.it作为src =“https://placehold.it/320x150”
答案 0 :(得分:4)
http://placehold.it只是提供虚拟图片来填充您的内容。您不能使用它来设置图像大小。使用此:
<img src="image/abc.png" style="width:320px;height:150px" alt="" />
答案 1 :(得分:2)
您只需请求以下网址即可使用占位符图片:
第一个参数定义宽度,第二个参数定义高度。
<img src="http://placehold.it/200x200">
&#13;