次のコードで "赤"の背景をどのように透明にすることができますか?私は身体に背景画像を使用したいと純粋なCSSの対話
https://codepen.io/anon/pen/JrEwyy
.from-me {
position:relative;
padding:10px 20px;
color:white;
background:#0B93F6;
border-radius:25px 25px 0 25px;
float: right;
&:before {
content:"";
position:absolute;
z-index:-1;
bottom:-2px;
right:-7px;
height:20px;
border-right:20px solid #0B93F6;
border-bottom-left-radius: 16px 14px;
-webkit-transform:translate(0, -2px);
}
&:after {
content:"";
position:absolute;
z-index:1;
bottom:-2px;
right:-56px;
width:26px;
height:20px;
background:red;
border-bottom-left-radius: 10px;
-webkit-transform:translate(-30px, -2px);
}
}
、私は赤の背景を非表示にする必要があり
これは望ましい結果ではありません。 – VXp