私は例の画像のように私のdivボックス(底面のセレクタの前に私の::を使用したいと思います。::のようなものは、セレクタの下に存在する場合、私は不思議でしたか?私の要素の一番下に:: beforeセレクタを使うには?
.direct-chat-text {
border-radius: 5px;
position: relative;
padding: 5px 10px;
background: #d2d6de;
border: 1px solid #d2d6de;
margin: 0px 150px 0 50px;
color: #444444;
}
.direct-chat-text::before {
position: absolute;
right: 100%;
top: 15px;
border: solid transparent;
border-top-width: medium;
border-right-width: medium;
border-bottom-width: medium;
border-left-width: medium;
border-right-color: transparent;
border-right-color: #d2d6de;
content: ' ';
height: 0;
width: 0;
pointer-events: none;
border-width: 6px;
margin-top: -6px;
}
<div class="direct-chat-text">3</div>