CSS |边框-右上角-半径属性
原文:https://www . geesforgeks . org/CSS-border-top-right-radius-property/
CSS 中的边框右上角半径属性用于定义给定元素边框右上角的半径。右上角的边框半径用于在容器的右上角绘制圆角。边框半径用于一次性设置半径值相同的容器所有半径角,边框-右上角-半径专门设置右上角边框。 语法:
border-top-right-radius:length|[value%]|initial|inherit;
默认值:有默认值即 0。
属性值:右上方边界半径属性值如下:
- 长度:用于在 px、em 等中指定固定长度的右上角半径。默认值为 0。
- 百分比%用于以百分比的形式指定边框右上角的半径。
- 初始值:用于将边框-右上角-半径属性设置为默认值。
- inherit: 该属性从其父元素继承而来。
例:
超文本标记语言
<!DOCTYPE html>
<html>
<head>
<title>
border-top-right-radius property
</title>
<style>
#length {
border-color: green;
border-style: solid;
border-top-right-radius: 20px;
}
#percentage {
border-color: green;
border-style: solid;
border-top-right-radius:59%;
}
#inherit {
border-color: green;
border-style: solid;
border-top-right-radius: inherit;
}
</style>
</head>
<body style = "text-align:center">
<h1>GeeksforGeeks</h1>
<h3>border-top-right-radius property</h3>
<div id="length">
border-top-right-radius: length;
</div><br>
<div id="percentage">
border-top-right-radius: percentage;
</div><br>
<div id="inherit">
border-top-right-radius: inherit;
</div>
</body>
</html>
输出:
支持的浏览器:支持的浏览器边框右上角半径属性如下:
- 谷歌 Chrome 5.0,4.0-webkit-
- Internet Explorer 9.0
- 火狐 4.0, 3.0-moz-
- Safari 5.0、3.1-webkit-
- 歌剧 10.5
版权属于:月萌API www.moonapi.com,转载请注明出处