HTML | <img> align Attribute
The <img> align attribute is used to set the alignment of an image. It is an inline element. It is used to specify the alignment of the image according to surrounding elements.
It is not supported by HTML 5. HTML 5 uses CSS property instead of this attribute.
Syntax:
<img align="left|right|middle|top|bottom">
Attribute Values:
- left: It sets the alignment of the image to the left.
- right: It sets the alignment of the image to the right.
- middle: It sets the alignment of the image to the middle.
- top: It sets the alignment of the image to the top.
- bottom: It sets the alignment of the image to the bottom.
Example:
html
<!DOCTYPE html> < html > < head > < title > HTML img align Attribute </ title > </ head > < body > < h1 >GeeksforGeeks</ h1 > < h2 >HTML img align Attribute</ h2 > < img src = alt = "GeeksforGeeks logo" align = "right" > < img src = alt = "GeeksforGeeks logo" align = "left" > </ body > </ html > |
Output:
Supported Browsers: The browser supported by HTML <img> align Attribute are listed below:
- Google Chrome
- Internet Explorer
- Firefox
- Safari
- Opera
HTML is the foundation of web pages, is used for webpage development by structuring websites and web apps. You can learn HTML from the ground up by following this HTML Tutorial and HTML Examples.
Please Login to comment...