CSS非ASCII字符最佳实践

本文探讨了在CSS中使用非ASCII字符时遇到的问题,特别是在Chrome浏览器中可能产生的乱码现象。文章提供了最佳实践建议,即使用反斜杠转义来避免此类编码问题,并通过具体示例展示了如何将中文字符转换为十六进制表示。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

问题场景

在写样式时经常需要用到非ASCII字符的属性值,如下:

?
1
2
3
4
5
6
7
8
9
10
11
.hot_list .sign_discount:before {
    content: "满减" ;
    padding: 0 8px;
    margin-right: 7px;
    font-size: 12px;
    line-height: 14px;
    color: #fff;
    text-align: center;
   
    border-radius: 11px;
}

但是Chrome下展示时有些时候会显示乱码:

\

除content外,font字体也是经常需要用于非ASCII字符的值,如font-family: “微软雅黑”

最佳实践

为避免以上这类编码问题,CSS推荐在涉及非ASCII字符时统一使用反斜杠转义以避免编码问题:

backslash escapes allow authors to refer to characters they cannot easily put in a document. In this case, the backslash is followed by at most six hexadecimal digits (0..9A..F), which stand for the ISO 10646 ([ISO10646]) character with that number, which must not be zero. (It is undefined in CSS 2.1 what happens if a style sheet does contain a character with Unicode codepoint zero.) If a character in the range [0-9a-fA-F] follows the hexadecimal number, the end of the number needs to be made clear.

详情请见:http://www.w3.org/TR/CSS2/syndata.html#escaped-characters

所以上例可以改成:

?
1
2
3
4
5
6
7
8
9
10
11
.hot_list .sign_discount:before {
    content: "\6ee1\51cf" ;
    padding: 0 8px;
    margin-right: 7px;
    font-size: 12px;
    line-height: 14px;
    color: #fff;
    text-align: center;
   
    border-radius: 11px;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值