Style borderLeft 属性
Style 对象的 borderLeft 属性以速记形式设置或返回三个独立的左边框属性
通过该属性,我们可以设置或返回
- border-left-width
- border-left-style
- border-left-color
borderLeft 属性没有默认值
语法
设置 borderLeft 属性
object.style.borderLeft=" width style color "
返回 borderLeft 属性
object.style.borderLeft
参数
参数 | 描述 |
---|---|
width | 设置左边框的宽度 |
style | 设置左边框的样式 |
color | 设置左边框的颜色 |
浏览器支持
所有主要浏览器都支持 borderLeft 属性
范例
更改左边框的宽度、样式和颜色
<style> #ex1{ border: thin dotted #FF0000; } </style> <script> function displayResult(){ document.getElementById("ex1").style.borderLeft="thick solid #0000FF"; } </script> <div id="ex1">这是一些文本。</div> <br> <button type="button" onclick="displayResult()">修改左边框</button>