可以在css内容伪元素中添加非拉丁字符吗?

时间:2017-02-07 13:00:58

标签: css pseudo-element

可以在css"内容"中添加非拉丁字符。伪元素?

我有这样的代码:

&::after{
             content:"(לחץ לחיוג)";
             color: #00b1eb;
             text-decoration: underline;
             font-family: "Open Sans", "Narkis Block M F" !important;
             font-size: 32px;
           }

在浏览器上我得到了这个Gibberish:

enter image description here

如果内容中的字符串:是英文,则一切正常:

enter image description here

有一种方法可以将希伯来语或非英语字符添加到内容伪元素中吗?

1 个答案:

答案 0 :(得分:2)

您可以使用此codepen example中的unicode序列打印非拉丁符号 e.g。

body::before {
  content:"(\05DC\05D7\05E5 \05DC\05D7\05D9\05D5\05D2)";
}

(我使用this tool将您的角色转换为UTF-8单位)