0
後、私はチャットバブルを作るために、次のHTML/CSSコードを使用します。CSSの背景色で問題::
body {background-color: red}
.message-sent {
position:relative;
padding:10px 20px;
color:white;
background:#0B93F6;
border-radius:25px;
float: right;
margin-bottom: 5px;
margin-right: 30px;
}
.message-sent-last::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);
}
.message-sent-last::after {
content:"";
position:absolute;
z-index:1;
bottom:-2px;
right:-56px;
width:26px;
height:20px;
border-bottom-left-radius: 10px;
-webkit-transform:translate(-30px, -2px);
background: red;
}
<div class="message-sent message-sent-last">
Hey there! What's up?
</div>
しかし、問題は、CSSの最後の行にあります背景色を繰り返さなければならない場合は、バブルが壊れます。 、これをチェックしてください:
body {background-color: red}
.message-sent {
position:relative;
padding:10px 20px;
color:white;
background:#0B93F6;
border-radius:25px;
float: right;
margin-bottom: 5px;
margin-right: 30px;
}
.message-sent-last::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);
}
.message-sent-last::after {
content:"";
position:absolute;
z-index:1;
bottom:-2px;
right:-56px;
width:26px;
height:20px;
border-bottom-left-radius: 10px;
-webkit-transform:translate(-30px, -2px);
background: transparent;
}
<div class="message-sent message-sent-last">
Hey there! What's up?
</div>
私はスニペットは異なる背景色でいくつかの場所で使用されますので、ページの背景色を繰り返さないようにしたいと思います。私は透明で、継承してみましたが、うまくいきませんでした。
私はUbuntuの下ChromeとFFでテストしてみた:
これは、第二のスニップがどのように見えるかです。
あなたはどう思いますか?
あなたの質問を読むのに時間がかかりませんでしたが、私のFFでは、両方のスニペットが同じように見えます。 – Kaiido
@Kaiido私はFFとChromeでUbuntuでテストしました。元の質問に画像を追加し、2番目のスナップがどのように見えるかを示しました。 – Luciano
これは私のFF48 Macのように見える方法です:http://i.stack.imgur.com/cuyIY.png – Kaiido