當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。