css中怎么制作四分之一圆
时间:2022-02-11 16:50
css中制作四分之一圆的方法:1、使用width和height属性设置元素的宽高相等;2、使用border-radius属性设置元素一个圆角的值为宽高值,其他3个圆角的值为0,语法“border-radius:宽或高值 0 0 0;”。 本教程操作环境:windows7系统、CSS3&&HTML5版、Dell G3电脑。 在css中,提到制作圆,就会想到border-radius属性。 该属性可以将一个宽高相等的正方形元素,变成一个圆 但有时我们不需要一个整圆,只需要一部分,利用四分之一圆,这要怎么做? 还是利用border-radius属性,设置元素一个圆角的值为宽或高值,其他3个圆角的值为0即可: (学习视频分享:css视频教程) 以上就是css中怎么制作四分之一圆的详细内容,更多请关注gxlsystem.com其它相关文章!p {
width: 50px;
height: 50px;
background-color: #0000FF;
border-radius: 50px;
}
<p></p>
border-radius: 50px 0 0 0;
border-radius: 0 50px 0 0;
border-radius: 0 0 50px 0;
border-radius: 0 0 0 50px;