您的位置:MYSQL中文网 > html border style HTML DOM Style borderBottomStyle 属性

html border style HTML DOM Style borderBottomStyle 属性

2023-06-20 21:30

html border style HTML DOM Style borderBottomStyle 属性

html border style HTML DOM Style borderBottomStyle 属性

html border style

Style borderBottomStyle 属性

Style 对象参考手册 Style 对象

定义和用法

borderBottomStyle 属性设置或返回元素的下边框的样式。

语法

设置 borderBottomStyle 属性:

Object.style.borderBottomStyle="value"

返回 borderBottomStyle 属性:

Object.style.borderBottomStyle

描述
none 默认。定义无边框。
hidden 与 "none" 相同。不过应用于表时除外,对于表,hidden 用于解决边框冲突。
dotted 定义点状边框。
dashed 定义虚线边框。
solid 定义实线边框。
double 定义双线边框。双线的宽度等于 border-width 的值。
groove 定义 3D 凹槽边框。其效果取决于 border-color 的值。
ridge 定义 3D 垄状边框。其效果取决于 border-color 的值。
inset 定义 3D inset 边框。其效果取决于 border-color 的值。
outset 定义 3D outset 边框。其效果取决于 border-color 的值。
inherit 下边框的样式从父元素继承。


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要浏览器都支持 borderBottomStyle 属性。

注意:IE7 及更早的版本不支持 "inherit" 值。IE8 只有规定了 !DOCTYPE 才支持 "inherit"。IE9 支持 "inherit"。


实例

实例

更改下边框的样式:

<html>
<head>
<style type="text/css">
#ex1
{
border: 1px solid #FF0000;
}
</style>
<script>
function displayResult()
{
document.getElementById("ex1").style.borderBottomStyle="dotted";
}
</script>
</head>
<body>

<div id="ex1">This is some text.</div>
<br>
<button type="button" onclick="displayResult()">Change style of bottom border</button>

</body>
</html>



Style 对象参考手册 Style 对象
阅读全文
以上是MYSQL中文网为你收集整理的html border style HTML DOM Style borderBottomStyle 属性全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
© 2024 MYSQL中文网 mysqlcn.com 版权所有 联系我们
桂ICP备12005667号-29 Powered by CMS