如何在CSS中创建这个形状?

时间:2017-10-15 06:19:54

标签: html css css3 css-shapes

是否可以在CSS3中创建此形状?

Shape

1 个答案:

答案 0 :(得分:0)

你可以使用after的伪选择器做这样的事情。

CODEPEN LINK

<强> CSS

div {
  height: 200px;
  background: blue;
  position: relative;
  width: 400px;
}

div:after {
  content: '';
  position: absolute;
  top: -50px; 
  left: -200px;
  border-top: 300px solid white;
  border-left: 300px solid white;
  width: 0;
  background: #fff;
  border-radius: 300px;   
}