自定义字体不适用于8及以下

问题描述:

我的自定义字体未在ie8中呈现。
我已经尝试清除缓存了,如果我没弄错的话,我也会发送正确的文件类型。
我在这里缺少什么?

My custom fonts aren't rendering in ie8. I've allready tried clearing the cache, and I'm also sending the correct filetypes if I'm not mistaken. What am I missing here?

@font-face {
font-family: 'Lobster';
src: url('fonts/lobster.eot');
src: url('fonts/lobster.eot') format('embedded-opentype'),
     url('fonts/lobster.woff') format('woff'),
     url('fonts/lobster.ttf') format('truetype'),
     url('fonts/lobster.svg#Lobster1.4Regular') format('svg');
}

.logoHome{color:#FFF; font: 58px Lobster, serif; text-decoration:none; line-height:58px;}


第一行给出一个错误。
删除:

The first line gave an error. Removing:

src: url('fonts/lobster.eot');

诀窍。