惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Vercel News
Vercel News
博客园 - 司徒正美
C
Check Point Blog
G
Google Developers Blog
The GitHub Blog
The GitHub Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
有赞技术团队
有赞技术团队
P
Proofpoint News Feed
IT之家
IT之家
B
Blog
博客园_首页
量子位
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
J
Java Code Geeks
H
Help Net Security
A
About on SuperTechFans
Apple Machine Learning Research
Apple Machine Learning Research
Jina AI
Jina AI
D
DataBreaches.Net
Y
Y Combinator Blog
大猫的无限游戏
大猫的无限游戏
云风的 BLOG
云风的 BLOG
Google DeepMind News
Google DeepMind News

博客园 - blueKnight

Java根据WSDL生成request的SOAP报文模板 【转】HttpClient使用Post和Get提交参数 Java解析Soap XML HttpClient示例 【转】C++标准库和标准模板库 dotNetFrameWork 3.5SP1离线安装 笔记本电脑win7创建WIFI热点 【转】Oracle免客户端For .Net(增加分析Devart和DataDirect) 【转】ORA-00257 archiver error. 错误的处理方法 数学表达式与二叉树 【转】Eclipse插件开发之基础篇(1) 插件开发的基础知识 http MIME大全 在iframe里的页面编写js,实现在父窗口上创建动画效果展开和收缩的div(不变动iframe父窗口代码) FreeMarker示例 转:用XML编写EXCEL文件 【网摘】BI系统(Business Intelligence) js获取周.html 关于j2ee工程发布到was上后,部分更新,例修改web.xml配置文件不起作用的原因解析 SSI(Struts2+Spring2+IBatis)代码生成器(纯Java版)
FIREFOX不支持font-family: webdings;怎么办? "5"...
blueKnight · 2012-02-10 · via 博客园 - blueKnight
> Example: <http://www.williamsauction.com/ca_all.php> -- There should be  
> up arrows and down arrows at the top of each column, but the Webdings  
> font isn't being used in Firefox, which shows "5" and "6". I've tried  
> specifying the font with an inline style in a span -- still doesn't work.

What Firefox/Win (and, incidently, Opera) is doing is correct. Your HTML  
markup has the characters '5' and '6'. They don't exist in the Webdings  
font, so the browser can't display them. It might be more correct to say  
that Webdings can't display ISO-8859-1 characters.

Anyway, the correct solution is to put the correct characters into the  
markup, namely &#9650; and &#9660;. I got those from the Unicode character  
charts <http://www.unicode.org/charts/>, specifically the "Geometric  
Shapes". Note that the hexadecimal Unicode codes need to be converted to  
decimal.

Webdings and similar fonts (eg Wingdings) really shouldn't be used at all.  
Always use Unicode for this sort of thing.