The problem of drawing arcs by css

clipboard.png
does anyone draw an arc like this with css? Ask for help

Mar.22,2021


< html lang= "en" >
< head >
< meta charset= "UTF-8" >
< title > Document < / title >
< style type= "text/css" >

  .box1{
      width: 400px;
      height: 400px;
      background-color: black;
  }
  .box2 {
      width: 100%;
      height: 300px;
      border-radius: 0 0 200px 200px/0 0 30px 30px;   
      background-color: red;
  }

< / style >
< / head >
< body >
< div class= "box1" >

<div class="box2">
</div>

< / div >
< / body >
< / html >


https://codepen.io/vizocn/pen.

Menu