The align attribute of the IFRAME element specifies the alignment of the iframe.
<iframe src="example.html" align="left"></iframe>
Attribute |
Value |
Explanation |
align=" " |
vertical alignment |
top |
aligns to the top |
middle |
aligns to the middle |
bottom |
aligns to the bottom (default) |
floats images |
left |
the iframe floats to the left (the text wraps to the right of the iframe) |
right |
the iframe floats to the right (the text wraps to the left of the iframe) |
Please see the "stopping text wrapping" when you specified the left or right.
Example