我正在尝试创建一个椭圆形和半圆形之间的混合.
可以在CSS中创建半圈:
.halfCircle{ height:45px; width:90px; border-radius: 90px 90px 0 0; -moz-border-radius: 90px 90px 0 0; -webkit-border-radius: 90px 90px 0 0; background:green; }
而椭圆可以这样做:
.oval { background-color: #80C5A0; width: 400px; height: 200px; margin: 100px auto 0px; border-radius: 200px / 100px; }
但是如何制作半椭圆形?这是我迄今为止的尝试.发生的问题是我有平顶,找到here.谢谢!
解决方法
我用一个可能的解决方案更新了你的演示:
div { background-color: #80C5A0; width: 400px; height: 100px; border-radius: 50% / 100%; border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
<div></div>
通过对边框半径使用基于百分比的单位,无论宽度和高度值如何,都应始终保持平滑的半椭圆.
有一些细微的变化,你将如何将半椭圆分割成一半垂直:
div { background-color: #80C5A0; width: 400px; height: 100px; border-radius: 100% / 50%; border-top-left-radius: 0; border-bottom-left-radius: 0; }
<div></div>