IE8 中的字体问题

发布于 2024-12-07 04:15:22 字数 497 浏览 2 评论 0原文

我已经开始在网站上使用 font-face 。我已经包含了 Fontsquirrel 的一款名为 Chunk Five 的免费字体 (http://www.fontsquirrel.com/fonts /ChunkFive),支持 IE(EOT 字体)。

然而,当我实现它时,一些字母看起来“被压扁”,这使它看起来非常难看。

这是它在 Chrome 下的样子(带有文本阴影): 在此处输入图像描述

这是在 IE8 下的外观:

IE8 下的字体

e、m 和 看起来很糟糕。

这是字体的问题吗?或者我使用的CSS?还是IE8?

I've started using font-face for a site. I've included a free font by Fontsquirrel called Chunk Five (http://www.fontsquirrel.com/fonts/ChunkFive) that has support for IE (EOT font).

However when I implement it, some letters look 'squashed' which gives it a very ugly look.

Here's how it looks under Chrome (with text-shadow):
enter image description here

Here's how it looks under IE8:

Font under IE8

The e's, m's and 's look awful.

Is this an issue with the font? Or the CSS that I use? Or IE8?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

风月客 2024-12-14 04:15:22

可以用JS加阴影吗?
CSS:

h1,  h2{ text-shadow: 2px 2px 2px #ddd;}

添加Jquery:

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6/jquery.min.js"></script>

添加脚本文件:

<script src="js/jquery.textshadow.js" type="text/javascript"></script>

JS代码:

<script type="text/javascript">
// <![CDATA[
    jQuery(document).ready(function(){
        jQuery("h1, h2").textShadow();
    })
// ]]>
</script>

Jquery影子插件你可以在这里找到http://plugins。 jquery.com/project/textshadow

May be add shadow with JS?
CSS:

h1,  h2{ text-shadow: 2px 2px 2px #ddd;}

Add Jquery:

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6/jquery.min.js"></script>

Add script file:

<script src="js/jquery.textshadow.js" type="text/javascript"></script>

JS code:

<script type="text/javascript">
// <![CDATA[
    jQuery(document).ready(function(){
        jQuery("h1, h2").textShadow();
    })
// ]]>
</script>

Jquery shadow plugin you can find here http://plugins.jquery.com/project/textshadow

听风念你 2024-12-14 04:15:22

我认为这与奇怪的字体大小有关。尝试应用均匀的字体大小,渲染应该是正确的。

I think it has something to do with odd font sizes. Try applying an even font size and the rendering should be correct.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文