Style borderTopRightRadius 属性

Style 对象参考手册 Style 对象

向 div 元素的右上角添加圆角边框:

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>蜜蜂教程(mifengjc.com)</title>
  <style>
    #myDIV {
      border: 1px solid black;
      width: 300px;
      height: 300px;
    }
  </style>
</head>
<body>

  <p>点击“尝试一下”按钮改变 DIV 元素的 borderTopRightRadius 属性:</p>
  <button onclick="myFunction()">尝试一下</button>
  <div id="myDIV">
    <h1>Hello</h1>
  </div>
  <script>
    function myFunction() {
      document.getElementById("myDIV").style.borderTopRightRadius = "25px";
    }
  </script>

</body>
</html>

尝试一下 »


定义和用法

borderTopRightRadius 属性设置或返回右下角边框的形状。

提示:该属性允许您向元素添加圆角边框!


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

IE9+、Firefox、Chrome、Safari 和 Opera 支持 borderTopRightRadius 属性。


语法

返回 borderTopRightRadius 属性:

object.style.borderTopRightRadius

设置 borderTopRightRadius 属性:

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

注意:border-top-right-radius 的长度或百分比的两个值定义了四分之一个椭圆的半径,即定义了外边框边缘的角的形状。第一个值是水平的半径,第二个值是垂直的半径。如果第二个值被省略了,则复制第一个值。如果两个长度都为 0,则角是方的,不是圆的。水平半径的百分比是相对于边界框的宽度,而垂直半径的百分比是相对于边界框的高度。

属性值

描述
length 定义右上角的形状。
% 以 % 形式定义右上角的形状。
initial 设置该属性为它的默认值。请参阅 initial
inherit 从父元素继承该属性。请参阅 inherit

技术细节

默认值: 0
返回值: 字符串,表示元素的 border-top-right-radius 属性。
CSS 版本 CSS3

相关文章

CSS 参考手册:border-top-right-radius 属性


Style 对象参考手册 Style 对象