0

IE8 で正常に動作する (マウス ホバー) xhtml ファイルにリンクがありますが、IE9 で同じページを開き、リンクにマウス ホバーするとフォント サイズが大きくなります。

なぜそれが起こっているのか誰か教えてもらえますか?

どんな助けでも大歓迎です。

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
              "w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">;
 <html xmlns="w3.org/1999/xhtml"; xmlns:h="java.sun.com/jsf/html";
  xmlns:c="java.sun.com/jsp/jstl/core"; xmlns:ui="java.sun.com/jsf/facelets";
  xmlns:f="java.sun.com/jsf/core"; xmlns:p="primefaces.org/ui"; class="no-js">
<head>
 <script src="js/modernizr-1.0.min.js"></script> 
</head>

しかし、それはうまくいきませんでした-:(

4

1 に答える 1

0

フォント ファイルはサイトと同じドメインにありますか? そうでなければ...

IE and Firefox implement the same origin policy, so any font library served 
on a different domain from the page will not be downloaded unless using CORS.

「既知の問題」をクリックします...

http://caniuse.com/#feat=fontface

于 2014-05-30T07:36:51.580 に答える