当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML DOM Style border属性用法及代码示例


HTML DOM 样式边框属性用于获取或设置元素的边框属性。它是 border-width、border-style 和 border-color 的速记属性。

用法

以下是语法 -

设置边框属性 -

object.style.border = "width style color|initial|inherit"

参数

上述属性解释如下 -

Sr.No参数及说明
1Width
用于设置边框宽度
2Style
用于设置边框宽度
3Color
用于设置边框宽度
4Initial
用于将此属性设置为初始值。
5Inherit
继承父属性值。

示例

让我们看一个边框属性的例子 -

<!DOCTYPE html>
<html>
<head>
<style>
   #IMG1 {
      border:2px solid orange;
      box-shadow:2px 2px 4px 1px seagreen;
   }
</style>
<script>
   function changeBorder(){
      document.getElementById("IMG1").style.border="4px dotted pink";
      document.getElementById("Sample").innerHTML="The border for the image is now changed";
   }
</script>
</head>
<body>
<h2>Learn XAMARIN</h2>
<img id="IMG1" src="https://www.tutorialspoint.com/xamarin/images/xamarin-minilogo.jpg">  
<p>Change the above image border clicking the below button</p>
<button onclick="changeBorder()">CHANGE BORDER</button>
<p id="Sample"></p>
</body>
</html>

输出

这将产生以下输出 -

单击更改边框 -

相关用法


注:本文由纯净天空筛选整理自AmitDiwan大神的英文原创作品 HTML DOM Style border Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。