如何在placehold.it中插入图像

时间:2014-04-02 03:06:21

标签: html

我使用http://placehold.it来放置图片大小,但我不知道如何插入图片,例如:

   <img src="image/abc.png" alt="" />

当我使用placehod.it作为src =“https://placehold.it/320x150”

2 个答案:

答案 0 :(得分:4)

http://placehold.it只是提供虚拟图片来填充您的内容。您不能使用它来设置图像大小。使用此:

<img src="image/abc.png" style="width:320px;height:150px" alt="" />

答案 1 :(得分:2)

您只需请求以下网址即可使用占位符图片:

http://placehold.it/300x200

第一个参数定义宽度,第二个参数定义高度。

&#13;
&#13;
<img src="http://placehold.it/200x200">
&#13;
&#13;
&#13;