这是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
尖三角形消失而不是文本。
有人可以帮我解决这个问题。