![](https://img.kancloud.cn/03/dc/03dc163d1a643362f7e2d314199a26b1_1584x1388.png)
~~~
width: 750px;
height: 660px;
background: red;
border-radius: 0 0 50% 50% / 10%;
~~~
border-radius
1. 实现圆角(默认是正圆)
2. 实现椭圆方式 在最后添加` / `左侧的为横轴半径,右侧的为竖轴半径( border-radius: 0 0 40% 40% / 8%; 表示把竖轴变成8%)
![](https://img.kancloud.cn/07/e3/07e346c2d0592710e8a77de704f4727a_1272x571.png)