Search w3schools.com:

SHARE THIS PAGE

IFrame align Property

Frame/IFrame Object Reference Frame/IFrame Object

Definition and Usage

The align property sets or returns the value of the align attribute in an iframe element.

The align attribute specifies the horizontal and vertical alignment of an iframe according to the surrounding element.

Tip: 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.

Syntax

iframeObject.align=value

The align property can have one of the following 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


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The align property is supported in all major browsers.


Example

Example

Align an iframe to the right:

<html>
<body>

<p>This is some text. This is some text. This is some text.
<iframe id="myframe" src="/default.asp">
<p>Your browser does not support iframes.</p>
</iframe>
This is some text. This is some text. This is some text.</p>

<script>
document.getElementById("myframe").align="right";
</script>

</body>
</html>

Try it yourself »


Frame/IFrame Object Reference Frame/IFrame Object

W3Schools Certification

W3Schools' Online Certification

The perfect solution for professionals who need to balance work, family, and career building.

More than 10 000 certificates already issued!

Get Your Certificate »

The HTML Certificate documents your knowledge of HTML.

The HTML5 Certificate documents your knowledge of advanced HTML5.

The CSS Certificate documents your knowledge of advanced CSS.

The JavaScript Certificate documents your knowledge of JavaScript and HTML DOM.

The jQuery Certificate documents your knowledge of jQuery.

The XML Certificate documents your knowledge of XML, XML DOM and XSLT.

The ASP Certificate documents your knowledge of ASP, SQL, and ADO.

The PHP Certificate documents your knowledge of PHP and SQL (MySQL).

Your suggestion:

Close [X]

Thank You For Helping Us!

Your message has been sent to W3Schools.

Close [X]