<img>
优质
小牛编辑
119浏览
2023-12-01
描述 (Description)
HTML 标记用于将图像放入HTML文档中。
例子 (Example)
<!DOCTYPE html>
<html>
<head>
<title>HTML Tag</title>
</head>
<body>
<img src = "https://www.xnip.cn/images/html.gif"
alt = "HTML Tutorial" height = "150" width = "140" />
</body>
</html>
全局属性 (Global Attributes)
此标记支持 - HTML Attribute Reference描述的所有全局属性
具体属性 (Specific Attributes)
HTML 标记还支持以下附加属性 -
属性 | 值 | 描述 |
---|---|---|
align | top bottom middle left right | Deprecated - 指定图像的对齐方式。 |
alt | text | 指定替代文本 |
border | pixels | Deprecated - 指定图像边框的宽度。 |
crossorigin | anonymous use-credentials | 它允许来自允许跨源访问的第三方站点的图像与canvas一起重用。 |
height | pixels or % | 指定图像的高度。 |
hspace | pixels | Deprecated - 要插入对象左侧和右侧的空白量。 |
ismap | URL | 将图像定义为服务器端图像映射。 |
longdesc | text | Deprecated - 指定长描述的URI/URL - 这可以详细说明使用alt属性指定的较短描述。 |
src | URL | 图像的网址 |
usemap | #mapname | 将图像定义为客户端图像映射,并与 |
vspace | pixels | Deprecated - 要插入对象顶部和底部的空白量。 |
width | pixels or % | 设置图像的宽度(以像素为单位)或以%为单位。 |
事件属性 (Event Attributes)
此标记支持 - HTML Events Reference描述的所有事件属性
浏览器支持 (Browser Support)
Chrome | Firefox | IE | Opera | Safari | Android |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |