Style borderWidth 屬性
Style 對象定義和用法
borderWidth 屬性設置或返回元素邊框的寬度。
該屬性可使用 1 到 4 種寬度:
- 如果規(guī)定一種寬度,比如:p {border-width: thick} - 所有四個邊框都是粗線。
- 如果規(guī)定兩種寬度,比如:p {border-width: thick thin} - 上邊框和下邊框是粗線,而左邊框和右邊框是細線。
- 如果規(guī)定三種寬度,比如:p {border-width: thick thin medium} - 上邊框是粗線,左邊框和右邊框是細線,下邊框是中等的線。
- 如果規(guī)定四種寬度,比如:p {border-width: thick thin medium 10px} - 上邊框是粗線,右邊框是細線,下邊框是中等的線,左邊框是 10px 的寬度。
語法
設置 borderWidth 屬性:
Object.style.borderWidth="thin|medium|thick|length|inherit"
返回 borderWidth 屬性:
Object.style.borderWidth
值 | 描述 |
---|---|
thin | 定義細的邊框。 |
medium | 默認。定義中等的邊框。 |
thick | 定義粗的邊框。 |
length | 允許您自定義邊框的寬度。 |
inherit | 邊框的寬度是從父元素繼承。 |
瀏覽器支持
所有主要瀏覽器都支持 borderWidth 屬性。
注意: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.borderWidth="thick thin";
}
</script>
</head>
<body>
<div id="ex1">This is some text.</div>
<br>
<button type="button" onclick="displayResult()">Change width of the four borders</button>
</body>
</html>
<head>
<style type="text/css">
#ex1
{
border: 1px solid #FF0000;
}
</style>
<script>
function displayResult()
{
document.getElementById("ex1").style.borderWidth="thick thin";
}
</script>
</head>
<body>
<div id="ex1">This is some text.</div>
<br>
<button type="button" onclick="displayResult()">Change width of the four borders</button>
</body>
</html>
嘗試一下 ?
Style 對象
更多建議: