Style cssFloat 屬性
Style 對象定義和用法
cssFloat 屬性設置或返回元素的水平對齊方式。
語法
設置 cssFloat 屬性:
Object.style.cssFloat="left|right|none|inherit"
返回 cssFloat 屬性:
Object.style.cssFloat
值 | 描述 |
---|---|
left | 對象/元素浮到父元素的左邊 |
right | 對象/元素浮到父元素的右邊 |
none | 默認。對象/元素不浮動。 |
inherit | cssFloat 屬性的值從父元素繼承。 |
瀏覽器支持
所有主要瀏覽器都支持 cssFloat 屬性。
注意:IE7 及更早的版本不支持 "inherit" 值。IE8 只有規(guī)定了 !DOCTYPE 才支持 "inherit"。IE9 支持 "inherit"。
提示和注釋
注釋:如果在一行中對于浮動元素而言空間太少,則這個元素會跳到下一行,這個過程會持續(xù)到有足夠空間的一行為止。
實例
實例
點擊兩個按鈕設置圖像浮動到文本的左右邊:
<html>
<head>
<script>
function floatRight()
{
document.getElementById("img1").style.cssFloat="right";
}
function floatLeft()
{
document.getElementById("img1").style.cssFloat="left";
}
</script>
</head>
<body>
<img id="img1" src="w3javascript.gif" width="100" height="132">
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<input type="button" onclick="floatRight()" value="Float right">
<input type="button" onclick="floatLeft()" value="Float left">
</body>
</html>
<head>
<script>
function floatRight()
{
document.getElementById("img1").style.cssFloat="right";
}
function floatLeft()
{
document.getElementById("img1").style.cssFloat="left";
}
</script>
</head>
<body>
<img id="img1" src="w3javascript.gif" width="100" height="132">
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<input type="button" onclick="floatRight()" value="Float right">
<input type="button" onclick="floatLeft()" value="Float left">
</body>
</html>
嘗試一下 ?
Style 對象
更多建議: