html - google chrome undetermined behavior with persian font-face; some parts are showing as squares -


i use bootstrap , persian font in site. when browser chrome(version 43.0.2357.124 m) of it's contents shown squares. if bootstrap.min.css removed page it's work properly. if browser resized squred texts shown well.

<table class="table"> <tbody><tr>     <th>         تاریخ ثبت     </th>     <th>         عنوان     </th>      <th>         خلاصه     </th>     <th></th> </tr>  <tr>     <td>         2015-06-14     </td>     <td>         تست      </td>      <td>         تست     </td>     <td>         <a href="#">ویرایش</a> |         <a href="#">مشاهده</a> |         <a href="#">حذف</a>     </td> </tr> 

style:

@font-face { font-family: "b koodak"; src: url("../fonts/bkoodakbold.ttf") format("opentype"), url("../fonts/bkoodakbold.woff") format("woff"), url("../fonts/bkoodakbold.otf") format("opentype");} 

renderd in chrome

i realize this question known chromium issue.

1- issue still not fixed or it's fault?

2- issue not fixed yet, there way handle it?

try add in @font-face:

 font-weight: normal;     font-style: normal; 

but think persian fonts aren't supported google.


Comments

Popular posts from this blog

c# - Validate object ID from GET to POST -

node.js - Custom Model Validator SailsJS -

php - Find a regex to take part of Email -