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