align

阅读:54      收藏:0      [点我收藏+]

IFrame align 属性


定义和用法

align 属性可设置或者返回 iframe 元素 align 属性的值。

align 属性指定如何根据周围的文本来排列 iframe。

提示:iframe元素是一个内嵌元素(它不是在页面上插入一个新的线),这意味着文本和其他元素可以围绕着它。 因此,它可以根据周围的文本来排列 iframe。

语法

iframeObject.align=value

align 属性可以是以下值:

描述
left iframe 左对齐
right iframe 右对齐
middle iframe 居中对齐
top iframe 顶部对齐
bottom iframe 底部对齐


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要浏览器都支持 align 属性


实例

iframe 右对齐:

<html>
<body>

<p>This is some text. This is some text. This is some text.
<iframe id="myframe" src="http://bubuko.com">
<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>

关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!