2017-12-07 20 views
1

아랍어 글꼴에 문제가 있습니다. Mozilla와 크롬 너트가 IE 11에서 제대로 작동하지 않습니다. 내 코드가 누구보다 낮습니다. 제발 도와주세요.아랍어 글꼴이 IE 11에서 작동하지 않습니까?

<!DOCTYPE html> 
    <html> 
    <head> 
     <style type="text/css"> 
     @font-face { 
      font-family: 'ArabicTwo_Bold'; 
      src: url('DroidKufi-Regular.eot?#iefix') format('embedded-opentype'), 

       url('ArabicSans_Bold.ttf') format('truetype'), 
       url('DroidKufi-Regular.woff') format('woff'), 
       url('DroidKufi-Regular.svg#ArabicTwo_Bold') format('svg'); 
     } 

     div , input { 
     font-family: ArabicTwo_Bold; 
     } 


     </style> 
    </head> 
    <body> 
     <input type='text' value='account 1 2 3' /> 
     <div> account 1 2 3 </div> 
    </body> 
    </html> 
+0

사용은'도 woff'. – locateganesh

+0

내가 사용했지만 작동하지 않음 – user1

+0

div, input { font-family : 'ArabicTwo_Bold'; }' 이 단일 '' '또는' ""인용 부호를 붙이십시오. – locateganesh

답변

1

CSS는

@font-face { 
    font-family: 'arabicsansbold'; 
    src: url('arabicsans_bold-webfont.eot'); 
    src: url('arabicsans_bold-webfont.eot?#iefix') format('embedded-opentype'), 
     url('arabicsans_bold-webfont.woff2') format('woff2'), 
     url('arabicsans_bold-webfont.woff') format('woff'), 
     url('arabicsans_bold-webfont.ttf') format('truetype'), 
     url('arabicsans_bold-webfont.svg#arabicsansbold') format('svg'); 
    font-weight: normal; 
    font-style: normal; 

} 

HTML

<!DOCTYPE> 
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> 
<head> 
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
    <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> 
    <style type="text/css"> 
        body{ 
       font-family: 'arabicsansbold'; 
         } 
     </style> 
</head> 

<body> 
<div id="container"> 
    <div id="header">ArabicSans Bold  123456</div> 


</div> 
</body> 
</html>