弯曲的讲话泡泡

Boo*_*dog 6 html css css-shapes

我试图用div制作一个弯曲的语音泡泡,像这样:

在此输入图像描述

这是我尝试过的,但它确实不起作用:

.userMsgBottom{
  position: relative;
  display: inline-block;
  max-width: 260px;
  height: auto;
  word-wrap: break-word;
  background-color: #2e7384;
  margin-top: 12px;
  margin-left: 8px;
  margin-right: 8px;
  padding: 7px;
  border-radius: 6px;
}
.userMsgBottom:after {
    content: "";
    position: absolute;
    bottom: 0px;
    right: 5px;
    width: 70px;
    height: 30px;
    background-color: #2e7384;
    transform: skew(45deg);
    transform-origin: top right;
    border-radius: 0 15% 5% 0% / 25%;
    z-index: -1;
}
Run Code Online (Sandbox Code Playgroud)

它这样做:

在此输入图像描述

我该怎么做呢?

Tem*_*fif 12

我会考虑radial-gradient这样做:

.userMsgBottom {
  position: relative;
  display: inline-block;
  color:#fff;
  max-width: 260px;
  background-color: #2e7384;
  margin: 12px 8px 0;
  padding: 7px;
  border-radius: 6px;
}

.userMsgBottom:after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: -23px;
  width: 30px;
  height: 25px;
  background: radial-gradient(circle at top right, transparent 58%, #2e7384 60%);
}
Run Code Online (Sandbox Code Playgroud)
<div class="userMsgBottom">
  Some text here<br> Some text here<br> Some text here
</div>
Run Code Online (Sandbox Code Playgroud)