HTML DOM cssFloat 属性

HTML DOM Style 对象参考手册

定义和用法

设置文本或图像出现(浮动)在另一个元素中的什么地方。

语法:

Object.style.cssFloat=left|right|none

可能的值

描述
left 图像或文本浮动在父元素的左边。
right 图像或文本浮动在父元素的右边。
none 图像或文本浮动显示在它在父元素中出现的位置。

提示和注释

注释:如果在一行中对于浮动元素而言空间太少,则这个元素会跳到下一行,这个过程会持续到有足够空间的一行为止。

实例

本例设置图像浮动于左边:

<html>
<head>
<script type="text/javascript">
function setFloat()
{
document.getElementById("img1").style.cssFloat="left";
}
</script>
</head>
<body>

<img id="img1" src="logocss.gif" />

<p>This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.</p>

<input type="button" onclick="setFloat()"
value="Set image to float to the left" />

</body>
</html>

TIY

cssFloat - 设置图像浮动于文字的左边(请在非 IE 浏览器中查看)

HTML DOM Style 对象参考手册