使用举例
属性
- src:指 "source"。源属性的值是图像的 URL 地址。
- alt:用来为图像定义一串预备的可替换的文本。
- width:固定宽度设置
- height:固定高度设置
- usemap:用于引用图片映射设置(见设置图片映射)
- align:对齐方式(top, middle, bottom)需要注意的是该属性只在html4中有效,在html5中不被支持;如果想在html5中达到相同的效果,请使用CSS
- float:浮动(left, right)需要注意的是该属性只在html4中有效,在html5中不被支持
实例:
- 插入图片:
An image:
- 排列(align)
Image with default alignment (align="bottom"):
This is some text. This is some text.
Image with align="middle":
This is some text. This is some text.
Image with align="top":
This is some text. This is some text.
Note: The align attribute is deprecated in HTML 4, and is not supported in HTML5. Use CSS instead.
- 设置图片链接
- 设置图片映射
注:
中的 usemap 属性可引用
area 元素永远嵌套在 map 元素内部。area 元素可定义图像映射中的区域。