본문 바로가기
Front-end/HTML

IE 호환성 보기 설정 무시하기

by mooyou 2022. 5. 20.
728x90
300x250
SMALL

 

HTML <head></head> 태그 사이에 다음 메타 태그를 추가 한다.

<meta http-equiv="X-UA-Compatible" content="IE=edge"> <!-- 가장 최신버전 모드 -->

 

다른 방법

서브 측 코드에 다음 코드를 추가 한다.

if(userAgent.contains("MISE") {
	response.addHEADER("X-UA-Compatible","IE=edge"/)
}

 

728x90
반응형
LIST

댓글