在html中显示交叉符号

时间:2015-03-16 11:47:38

标签: html css google-chrome

我遇到了有线问题。我正在研究一个新网站的HTML。它显示交叉符号而不是空格。附上截图。

enter image description here

enter image description here

enter image description here

这个十字架背后的HTML是:

<div>&nbsp;</div>

Chrome检查十字符号:

enter image description here

我用谷歌搜索,发现它与chrome和font-family即时通讯有关。我正在使用

'vag_roundedregular', 'Varela Round', sans-serif

如果我对此font-family发表评论,则十字标志会消失。这仅在chrome上可见。

非常感谢任何帮助。如果你需要信息,请告诉我。

谢谢!

3 个答案:

答案 0 :(得分:1)

使用&thinsp;代替&nbsp;

或将CSS设置为:

.clear{opacity:0;}

答案 1 :(得分:0)

您在Chrome检查员中看到了什么?无论如何,你可以在容器div中添加一个类并设置

visibility: hidden

在css中。 但首先请告诉我检查员的结果,因为希望能够找到更好的解决方案。

答案 2 :(得分:-1)

find ./ -type f -exec sed -i 's/nbsp/thinsp/g' *.tpl {} \;