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

html border style HTML DOM Style borderLeft 属性

2023-08-24 00:30

html border style HTML DOM Style borderLeft 属性

html border style HTML DOM Style borderLeft 属性

html border style

Style borderLeft 属性

Style 对象参考手册 Style 对象

定义和用法

borderLeft 属性以速记形式设置或返回三个独立的左边框属性。

通过该属性,您可以设置/返回:

  • border-left-width
  • border-left-style
  • border-left-color

语法

设置 borderLeft 属性:

Object.style.borderLeft="width style color"

返回 borderLeft 属性:

Object.style.borderLeft

提示:borderLeft 属性没有默认值。

参数 描述
width 设置左边框的宽度。
style 设置左边框的样式。
color 设置左边框的颜色。


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

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


实例

实例

更改左边框的宽度、样式和颜色:

<html>
<head>
<style type="text/css">
#ex1
{
border: thin dotted #FF0000;
}
</style>
<script>
function displayResult()
{
document.getElementById("ex1").style.borderLeft="thick solid #0000FF";
}
</script>
</head>
<body>

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

</body>
</html>



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