大家好,我content: "▼"
在 CSS3:after
伪元素中添加了它,但它在 IE9 中无法正常工作。
它显示"Γû╝"
为这个符号。我<meta>
正确添加了标签。
我的 CSS
#get-in {
position: relative;
margin-top: 15px;
margin-right: 0px;
background-color: #bfbfbf;
border-radius: 4px;
border: 1px solid #b7b7b7;
width: 74px;
line-height: 26px;
height: 26px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
text-indent: 15px;
/*text-align: center;*/
}
#get-in:after {
content: "▼";
font-size: 12px;
padding: 0 6px;
position: absolute;
right: 0;
top: 0;
}
我的代码有问题还是 IE9 不支持..?有什么解决办法吗?