본문 바로가기
[Front-End] 프론트엔드/[html5]

[html5] internet explorer 인터넷 익스플로러 호환 소스 코드 예제

by codeomni 2018. 8. 24.
반응형

 

안녕하세요.

 

윈도우에서 제공되는 인터넷 익스플로러는 업데이트 되면 렌더링 방식이 변화되어

<meta> 태그를 통해 content 속성으로 렌더링 방식을 지정해야합니다.

 

-IE=7: IE7 표준 모드 렌더링 방식

-IE=8: IE8 표준 모드 렌더링 방식

-IE=7: IE8 표준 모드 렌더링 방식 이상

 

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html>
    <head>
        <meta http-equiv= x-ua-compatible content= ie=edge>
        <title>codeomni.tistory.com html5 internet explorer 인터넷 익스플로러 호환 소스 코드 예제</title>
        <style>
            body {
                background-color: #9adaca;
            }
        </style>
    </head>
    <body>
        <div>
            <h1>codeomni.tistory</h1>
            <p>인터넷 익스플로러 호환</p>
        </div>
    </body>
</html>
cs

 

 

댓글