我通读其他类似的帖子,但我仍然无法得到文字装饰:没有在IE中工作。它适用于Edge,Chrome和Firefox。这些页面也在WordPress上(如果它有任何区别)。
我正在使用的CSS:
.glyphNext:after {
display: inline-block;
font-family: CaGov;
content: "\e669";
padding-left: 5px;
vertical-align: middle;
text-decoration: none!important;
}
.glyphNext:hover::after {
text-decoration: none!important;
}
还有其他想法吗?我只希望文本链接加下划线,我不希望我的字形在悬停时加下划线。
答案 0 :(得分:0)
首先,.glyphNext
是什么?它是锚标记吗?
如果是锚标记,请将text-decoration: none;
附加到选择器,如下所示:
.glyphNext, .glyphNext:hover {
text-decoration: none;
}