これはHTMLです:
<div class="arrow">
i need to hide the overflown text which comes out of the div
</div>
対応するCSSは次のとおりです。
.arrow {
width: 5%;
position: relative;
}
.arrow:before {
content: " ";
width: 0;
position: absolute;
left: -0.58em;
border-style: solid;
border-width: .585em .585em .585em 0;
}
オーバーフローしたテキストを非表示にする必要があります。
適用overflow:hidden
すると、テキストの代わりに尖った三角形が消えます。
誰かがこれで私を助けてくれませんか。