border-top-left-radius属性定义及用法
在css中border-top-right-radius属性是用来将元素右上角的边框设置为圆角边框(也可以是其它形状),该属性一般用在单独设置右上角为圆角的时候;如果我们要同时设置元素四个角为圆角时,当然我们可以使用该属性和其它三个类似该属性的属性(见下面类似属性),但是我们一般会选用border-radius属性,border-radius属性可以将四个角的设置定义在同一个声明中,这样可以省略几行代码,可读性更好。
border-top-left-radius属性类似属性
border-top-left-radius属性:设置左上角为圆角或其它形状
border-bottom-left-radius属性:设置左下角为圆角或其它形状
border-bottom-right-radius属性:设置右下角为圆角或其它形状
border-top-left-radius属性语法格式
css语法:border-top-right-radius:5px10px
css语法:border-top-right-radius:6px
css语法:border-top-right-radius:30%80%
css语法:border-top-right-radius:50%
JavaScript语法:object.style.borderTopRightRadius="5px"
border-top-left-radius属性值说明
border-top-right-radius属性有两个属性值,如果两个属性值相同,则可以省略一个属性值,效果完全相同。当有两个属性值时:第一个属性值表示右上角形状的水平半径,第二个属性值表示垂直半径;当只有一个属性值时:该属性值表示右上角形状的水平半径和垂直半径。
实例
<!DOCTYPEhtml>
<html>
<head>
<metacharset="utf-8"/>
<title>cssborder-top-right-radius属性将右上角设置为圆角边框</title>
<styletype="text/css">
body{background:#ddd;font-size:20px;}
#a,#b,#c{margin-top:10px;width:360px;border:2pxsolid#0000FF;padding:16px;}
#a{border-top-right-radius:56px36px;}
#b{border-top-right-radius:60px;}
#c{border-top-right-radius:20%80%;}
</style>
</head>
<body>
<divid="a">border-top-right-radius:56px36px;</div>
<divid="b">border-top-right-radius:60px;</div>
<divid="c">border-top-right-radius:20%80%;</div>
</body>
</html>
Tag:
怎么