HTML <iframe> align Attribute
Example
A right-aligned <iframe>:
  
    <iframe src="/default.asp" width="200" height="200" align="right">
 </iframe>
  
Try it Yourself »
Definition and Usage
The align attribute specifies the alignment of an <iframe> according to the surrounding element.
The <iframe> element is an inline element (it does not insert a new line on a page), meaning that text and other elements can wrap around it. Therefore, it can be useful to specify the alignment of the <iframe> according to surrounding elements.
Browser Support
| Attribute | |||||
|---|---|---|---|---|---|
| align | Yes | Yes | Yes | Yes | Yes | 
The align attribute is deprecated, but still supported in all major browsers.
Compatibility Notes
The align attribute of <iframe> is not supported in HTML5. Use CSS instead.
CSS syntax: <iframe style="float:right">
CSS Example: Float an iframe to the right
In our CSS tutorial you can find more details about the float property.
Syntax
  
    <iframe align="left|right|middle|top|bottom">
Attribute Values
| Value | Description | 
|---|---|
| left | Align the iframe to the left | 
| right | Align the iframe to the right | 
| middle | Align the iframe in the middle | 
| top | Align the iframe at the top | 
| bottom | Align the iframe at the bottom | 
❮ HTML <iframe> tag

