css - Font problems with IE8 -


i'm having problems during webdevelopment ie8. website should support ie8. font not shown correctly.

i use following code:

@font-face {     font-family: 'myfont';   src: url('./fonts/myfont/eot/myfont.eot');   src: url('./fonts/myfont/eot/myfont.eot?iefix') format('eot'),    url('./fonts/myfont/woff/myfont.woff') format('woff'),    url('fonts/myfont/ttf/myfont.ttf') format('truetype'),    url('./fonts/myfont/svg/myfont.svg#webfont') format('svg');   font-weight: normal;   font-style: normal; } 

what can font shown correctly?.

thx help.

doesn't have formatted properly

if linking outside of tree should have ../ not ./.

also missing trailing truetype.

and eot should embedded-opentype

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


Comments