<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
/*半圆*/
.box1{
width:100px;
height: 50px;
margin: 20px;
background-color: red;
border-radius: 50px 50px 0 0;
}
/*1/4圆*/
.box2{
width:50px;
height: 50px;
margin: 20px;
background-color: red;
border-radius: 50px 0 0 0;
}
/*1/2 横轴椭圆*/
.box3{
width: 300px;
height: 100px;
margin: 20px;
border-radius: 150px 150px 0 0/100px 100px 0 0;
background-color: red;
}
/*1/2 纵轴椭圆*/
.box33{
width: 100px;
height: 300px;
margin: 20px;
border-radius: 0 100px 100px 0/0 150px 150px 0;
background-color: red;
}
/*1/4椭圆*/
.box4{
width:150px;
height: 50px;
margin: 20px;
background-color: red;
border-radius: 150px 0 0 0/50px 0 0 0;
}
</style>
</head>
<body>
<div class='box1'></div>
<div class='box2'></div>
<div class='box3'></div>
<div class='box33'></div>
<div class='box4'></div>
</body>
</html>