css实现椭圆、半椭圆

1. 椭圆

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

2.半椭圆

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

 

posted @ 2018-06-14 16:19  TrendY  阅读(3994)  评论(0编辑  收藏  举报