border简单的效果
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Document</title>
</head>
<body>
<div class="box">
</div>
<br/>
<div class="box1">
</div>
<style>
.box{
float: left;
width:150px;
height:550px;
border-top:80px solid black;
border-radius: 150px 0 0 0/150px 0 0 0;
}
</style>
</body>
</html>