请帮忙,我正在使用font-family:" Arial Black"," Arial Bold",Gadget,sans-serif;在我的项目中。所有浏览器都正确显示它除了Internet Explorer 8,它以斜体显示它。 我使用的Doctype是:
font-family: "Arial Black","Arial Bold",Gadget,sans-serif;
font-style:normal;

我尝试通过添加这些来修复它,但没有成功:
@font-face {
font-family: 'Arial Black';
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Arial Bold';
font-weight: normal;
font-style: normal;
}

OR
// view
<?php
$this->Html->scriptStart(array("block"=>'script',"inline"=>FALSE));
?>
$().ready(function(){
alert("dd");
});
<?php
$this->Html->scriptEnd();
?>
&#13;
感谢您的帮助