英[ˈbɒtəm]   美[ˈbɑ:təm]  

n.底部;末端;臀部;盡頭

adj.底部的

#vt.裝底;深淺;找出真相

vi.到達底部;建立基礎

第三人稱單數: bottoms 複數: bottoms 現在分詞: bottoming 過去式: bottomed 過去分詞: bottomed

javascript bottom屬性 語法

作用:設定定位元素下外邊距邊界與其包含區塊下邊界之間的偏移。

語法:Object.style.bottom=auto|%|length

註解:如果"position" 屬性的值為"static" ,那麼設定"bottom" 屬性不會產生任何效果。

javascript bottom屬性 範例

<html>
<head>
<style type="text/css">
input
{
position:absolute;
}
</style>
<script type="text/javascript">
function setBottomEdge()
{
document.getElementById("b1").style.bottom="100px";
}
</script>
</head>
<body>

<input type="button" id="b1" onclick="setBottomEdge()"
value="Set bottom edge to 100 px" />

</body>
</html>

執行實例 »

點擊 "執行實例" 按鈕查看線上實例