有个电商的业务需要在ios和安卓上显示价钱,所以需要人民币符号,
网上查了多种方式,更改字体、使用¥
、使用半角人民币符号,在实际测试过程中,发现安卓手机还是只能显示一横,没办法 只能使用图片了。
<div>
<span class="txt">秒杀价</span>
<span class="price">77.09</span>
</div>
.txt {
position: relative;
}
.txt:after {
position: absolute;
content: '';
display: inline-block;
background: url("./img/yen.png") no-repeat;
background-size: contain;
width: 15px;
height: 15px;
transform: translateY(-50%);
top: 50%;
}
.price {
margin-left: 15px;
}
人民币符号图片可以在iconfont下载
参考资料:
直接拷贝半角人民币符号