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

推荐订阅源

IT之家
IT之家
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
美团技术团队
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园_首页
MyScale Blog
MyScale Blog
N
Netflix TechBlog - Medium
I
InfoQ
Jina AI
Jina AI
Martin Fowler
Martin Fowler
Recent Announcements
Recent Announcements
量子位
月光博客
月光博客
罗磊的独立博客
雷峰网
雷峰网
The Cloudflare Blog
V
V2EX
小众软件
小众软件
人人都是产品经理
人人都是产品经理
博客园 - Franky
T
Tailwind CSS Blog
有赞技术团队
有赞技术团队
S
SegmentFault 最新的问题

博客园 - 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.