前端 边界圆角
Posted bladecheng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了前端 边界圆角相关的知识,希望对你有一定的参考价值。
边界圆角
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>边界圆角</title>
<style>
.box
width: 300px;
height: 300px;
background-color: orangered;
.box
/*固定值 | 百分比*/
/*border-radius: 10%;*/
/*左上为第一个角,顺时针编号*/
/*border-radius: 10px 20px 30px 40px;*/
/*不足找对角*/
/*border-radius: 10px 50px 100px;*/
/*border-radius: 10px 50px;*/
/*横纵分离,先横后纵*/
/*border-radius: 50px / 50%;*/
/*border-radius: 50px 100px / 50%;*/
border-radius: 60%;
</style>
<style>
.b
width: 300px;
height: 150px;
background-color: orangered;
border-radius: 50% 50% 0 0 / 100% 100% 0 0;
</style>
</head>
<body>
<div class="box"></div>
<div class="b"></div>
</body>
</html>
以上是关于前端 边界圆角的主要内容,如果未能解决你的问题,请参考以下文章
2018.12.7边界圆角redius,背景图设置,平铺,精灵图,盒子伪类索引