HTML <img> 标签


示例

如何插入图片:

<img src="img_girl.jpg" alt="Girl in a jacket" width="500" height="600">
亲自试一试 »

下面有更多 "亲自试一试" 示例。


定义和用法

这个<img>标签用于在 HTML 页面中嵌入图片。

从技术上讲,图片并未插入网页;图片链接到网页。这<img>标签为引用的图片创建一个保留空间。

这个<img>标签有两个必需的属性:

  • src - 指定图片的路径
  • alt - 如果由于某种原因无法显示图片,则指定图片的替代文本

笔记:另外,请始终指定图片的宽度和高度。如果未指定宽度和高度,则加载图片时页面可能会闪烁。

提示:要将图片链接到另一个文档,只需嵌套<img>标签内的<一>标签(参见下面的示例)。


浏览器支持

Element
<img> Yes Yes Yes Yes Yes

属性

Attribute Value Description
alt text Specifies an alternate text for an image
crossorigin anonymous
use-credentials
Allow images from third-party sites that allow cross-origin access to be used with canvas
height pixels Specifies the height of an image
ismap ismap Specifies an image as a server-side image map
loading eager
lazy
Specifies whether a browser should load an image immediately or to defer loading of images until some conditions are met
longdesc URL Specifies a URL to a detailed description of an image
referrerpolicy no-referrer
no-referrer-when-downgrade
origin
origin-when-cross-origin
unsafe-url
Specifies which referrer information to use when fetching an image
sizes sizes Specifies image sizes for different page layouts
src URL Specifies the path to the image
srcset URL-list Specifies a list of image files to use in different situations
usemap #mapname Specifies an image as a client-side image map
width pixels Specifies the width of an image


全局属性

这个<img>标签还支持HTML 中的全局属性


事件属性

这个<img>标签还支持HTML 中的事件属性


更多示例

示例

对齐图片(使用 CSS):

<img src="smiley.gif" alt="Smiley face" width="42" height="42" style="vertical-align:bottom">
<img src="smiley.gif" alt="Smiley face" width="42" height="42" style="vertical-align:middle">
<img src="smiley.gif" alt="Smiley face" width="42" height="42" style="vertical-align:top">
<img src="smiley.gif" alt="Smiley face" width="42" height="42" style="float:right">
<img src="smiley.gif" alt="Smiley face" width="42" height="42" style="float:left">
亲自试一试 »

示例

添加图片边框(使用 CSS):

<img src="smiley.gif" alt="Smiley face" width="42" height="42" style="border:5px solid black">
亲自试一试 »

示例

为图片添加左右边距(使用 CSS):

<img src="smiley.gif" alt="Smiley face" width="42" height="42" style="vertical-align:middle;margin:0px 50px">
亲自试一试 »

示例

为图片添加顶部和底部边距(使用 CSS):

<img src="smiley.gif" alt="Smiley face" width="42" height="42" style="vertical-align:middle;margin:50px 0px">
亲自试一试 »

示例

如何插入来自另一个文件夹或另一个网站的图片:

<img src="/images/stickman.gif" alt="Stickman" width="24" height="39">
<img src="https://www.91xjr.com/images/lamp.jpg" alt="Lamp" width="32" height="32">
亲自试一试 »

示例

如何向图片添加超链接:

<a href="https://www.91xjr.com">
<img src="w3html.gif" alt="91xjr.com" width="100" height="132">
</a>
亲自试一试 »

示例

如何创建具有可点击区域的图片映射。每个区域都是一个超链接:

<img src="workplace.jpg" alt="Workplace" usemap="#workmap" width="400" height="379">

<map name="workmap">
  <area shape="rect" coords="34,44,270,350" alt="Computer" href="computer.htm">
  <area shape="rect" coords="290,172,333,250" alt="Phone" href="phone.htm">
  <area shape="circle" coords="337,300,44" alt="Cup of coffee" href="coffee.htm">
</map>
亲自试一试 »

相关页面

HTML 教程:HTML 图片

HTML DOM 参考:图片对象

CSS 教程:设计图片


默认 CSS 设置

大多数浏览器都会显示<img>具有以下默认值的元素:

示例

img {
  display: inline-block;
}
亲自试一试 »