Style border 屬性
Style 對象定義和用法
border 屬性以速記形式設置或返回三個獨立的邊框屬性。
通過該屬性,您可以設置/返回:
- border-width
- border-style
- border-color
語法
設置 border 屬性:
Object.style.border="width style color"
返回 border 屬性:
Object.style.border
提示:border 屬性沒有默認值。
參數(shù) | 描述 |
---|---|
width | 設置邊框的寬度。 |
style | 設置邊框的樣式。 |
color | 設置邊框的顏色。 |
瀏覽器支持
所有主要瀏覽器都支持 border 屬性。
實例
實例
更改 div 元素的邊框:
<html>
<head>
<style type="text/css">
#ex1
{
border: thin dotted #FF0000;
}
</style>
<script>
function displayResult()
{
document.getElementById("ex1").style.border="thick solid #0000FF";
}
</script>
</head>
<body>
<div id="ex1">This is some text</div>
<br>
<button type="button" onclick="displayResult()">Change border</button>
</body>
</html>
<head>
<style type="text/css">
#ex1
{
border: thin dotted #FF0000;
}
</style>
<script>
function displayResult()
{
document.getElementById("ex1").style.border="thick solid #0000FF";
}
</script>
</head>
<body>
<div id="ex1">This is some text</div>
<br>
<button type="button" onclick="displayResult()">Change border</button>
</body>
</html>
嘗試一下 ?
Style 對象
更多建議: