
~~~
width: 750px;
height: 660px;
background: red;
border-radius: 0 0 40% 40% / 8%;
~~~
border-radius
1. 實現圓角(默認是正圓)
2. 實現橢圓方式 在最后添加` / `左側的為橫軸半徑,右側的為豎軸半徑( border-radius: 0 0 40% 40% / 8%; 表示把豎軸變成8%)
