포럼

안녕하세요.

유독 IE9에서만 웹폰트가 제대로 적용되지 않습니다.

Notosans를 사용중이며, 제 서버에 폰트파일을 업로드 해두었습니다.

그리고 <head>에 <link href='https://example.com/font.css?family=Noto+Sans+Regular|Noto+Sans+Bold' rel='stylesheet' type='text/css'>로 불러오게 해두었고

저 파일 안에는 아래와 같이 설정해두었습니다.

@font-face {
    font-family: 'Noto Sans KR Regular';
    font-style: normal;
    font-weight: 400;
    src: local('Noto Sans Regular'), local('NotoSans-Regular'),
    url(https://example.com/NotoSansKR-Regular-Hestia.eot),
    url(https://example.com/NotoSansKR-Regular-Hestia.eot?#iefix) format('embedded-opentype'),
    url(https://example.com/NotoSansKR-Regular-Hestia.woff) format('woff'),
    url(https://example.com/NotoSansKR-Regular-Hestia.otf) format('opentype');
}

그리고 제 홈페이지에는 아래와 같이 설정해두었는데요

a,body,p {
 font-family: Apple SD Gothic Neo,'Noto Sans KR Regular',맑은 고딕, 나눔 고딕,sans-serif !important;font-weight:400;}

 폰트 굵기가 400, 700 두개만 불러오도록 해두었는데요 이상하게 IE9에서 400굵기의 폰트만 제대로 표현이 안됩니다. 

이리저리 바꾸어보아도 고칠수가 없네요.. 뭐가 문제인지도 잘 모르겠습니다.

도와주세요 ㅠㅠ