我有一个如图所示的链接
我想做的就是申请
text-overflow: ellipsis;
所以在这种情况下,单词“Page”将被省略号替换,但仍然有箭头,它是:链接后的元素。
链接代码是这样的:
.next-lesson:after{
background: url("img/icons.png") no-repeat -9px -91px;
display: inline-block;
background-repeat: no-repeat;
width: 15px;
height: 15px;
content: "";
margin-left: 5px;
}
答案 0 :(得分:2)
关于您的上一条评论,您可以执行以下操作:
在链接的父div上声明position:relative
,在链接的伪元素上声明position:absolute
,使其独立于a
及其声明的overflow:hidden
。相应地调整位置,一切都应该没问题。