css实现椭圆、半椭圆

1. 椭圆

1 .ellipse{ 2width: 250px; 3height: 150px; 4margin: 50px; 5background: #FFD900; 6border-radius: 50% / 50%; 7 }

【css实现椭圆、半椭圆】2.半椭圆
1 .ellipse{ 2width: 550px; 3height: 150px; 4margin: 50px; 5background: #FFD900; 6border-radius: 50% / 100% 100% 0 0; 7 }


转载于:https://www.cnblogs.com/zywaf/p/9183602.html

    推荐阅读