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


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


borderBottomRightRadius 属性用于将圆角添加到元素的右下边框或获取它们的测量值。

用法

以下是语法 -

获取 borderBottomRightRadius 属性 -

object.style.borderBottomRightRadius = "length|% [length|%]|initial|inherit"

属性值解释如下 -

Sr.No值和描述
1length
用于定义右下角形状
2%
用于以百分比定义右下角形状。
3initial
用于将此属性设置为初始值。
4inherit
继承父属性值

示例

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

<!DOCTYPE html>
<html>
<head>
<style>
   #DIV1{
      height:100px;
      width:200px;
      border:10px groove orange;
      padding:10px;
      border-bottom-right-radius:240px 90px;
   }
</style>
<script>
   function changeBottomBorder(){
      document.getElementById("DIV1").style.borderBottomRightRadius="90px 50px";
      document.getElementById("Sample").innerHTML="The bottom border right radius is now decreased";
   }
</script>
</head>
<body>
<div id="DIV1">SOME SAMPLE TEXT</div>
<p>Change the above image bottom right border size by clicking the below button</p>
<button onclick="changeBottomBorder()">Change Bottom Border</button>
<p id="Sample"></p>
</body>
</html>

输出

这将产生以下输出 -

单击 “Change Bottom Border” 按钮时 -

相关用法


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