私のスパンの前にCSSの三角形を置いて何らかの理由で何も表示されていません。スパンの前にCSS三角形を置く方法
.triangle:before {
width: 0;
height: 0;
border-top: 3px solid transparent;
border-right: 6px solid green;
border-bottom: 3px solid transparent;
right: 100%;
top: 0%;
position: absolute;
clear: both;
}
.triangle {
position: relative;
}
<span class="triangle">Hi</span>
は、私は満足している –
を働いたこと、ありがとうそれを聞いて;) –