Style borderBottomWidth 屬性
Style 對象定義和用法
borderBottomWidth 屬性設置或返回元素的下邊框的寬度。
語法
設置 borderBottomWidth 屬性:
Object.style.borderBottomWidth="thin|medium|thick|length|inherit"
返回 borderBottomWidth 屬性:
Object.style.borderBottomWidth
值 | 描述 |
---|---|
thin | 定義細的邊框。 |
medium | 默認。定義中等的邊框。 |
thick | 定義粗的邊框。 |
length | 使用 px、cm 等單位定義邊框的寬度。 |
inherit | 下邊框的寬度從父元素繼承。 |
瀏覽器支持
所有主要瀏覽器都支持 borderBottomWidth 屬性。
注意:IE7 及更早的版本不支持 "inherit" 值。IE8 只有規(guī)定了 !DOCTYPE 才支持 "inherit"。IE9 支持 "inherit"。
實例
實例
更改下邊框的寬度:
<html>
<head>
<style type="text/css">
#ex1
{
border: 1px solid #FF0000;
}
</style>
<script>
function displayResult()
{
document.getElementById("ex1").style.borderBottomWidth="thick";
}
</script>
</head>
<body>
<div id="ex1">This is some text.</div>
<br>
<button type="button" onclick="displayResult()">Change width of bottom border</button>
</body>
</html>
<head>
<style type="text/css">
#ex1
{
border: 1px solid #FF0000;
}
</style>
<script>
function displayResult()
{
document.getElementById("ex1").style.borderBottomWidth="thick";
}
</script>
</head>
<body>
<div id="ex1">This is some text.</div>
<br>
<button type="button" onclick="displayResult()">Change width of bottom border</button>
</body>
</html>
嘗試一下 ?
Style 對象
更多建議: