用纯粹的 css 创建 'wing' 角球技巧

Creating 'wing' corner trick with pure css

是否可以像这张图片那样添加角(顶角)?我不确定这种效果叫什么。如果是,您的方法是什么?

更新: 有人提出这个问题是重复的,不幸的是,重复的解决方案没有考虑到 'wings' 是用颜色填充的。虽然它非常适合具有轮廓的选项卡,但它具有实际填充。

这种技术叫什么?

我的方法是使用 :before:after 伪类来添加和定位角尖。

.box {
  position: absolute;
  background: gray;
  width: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 0 0 10px 10px;
}

em {
  display: block;
  font-style: italic;
  font-size: 1.1em;
  color: white;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  line-height: 2.2em;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.6);
}

.box:before,
.box:after {
  content: '';
  display: block;
  border: 10px solid transparent;
  border-top: 10px solid gray;  
  position: absolute;
  top: 0;
}

.box:before {
  left: -6px;
}

.box:after {
  right: -6px;
}
<div class="box">
  <em>Benefits Included In Members Savings Package</em>  
</div>