Javascript/[중요] Javascript
엣지에서 IP주소가 파란색 및 줄로 나오는 현상(edge ip auto underline, x-ms-format-detection )
마샤와 곰
2019. 9. 20. 13:54
네네. 우리의 마이크로소프트의 브라우저가 저런 황당한(?) 기능을 부여할 때가 있습니다.
즉, a테그없이 그냥 단순히 ip 만 들어갔을 뿐인데 저런 현상을 보여주곤 합니다.
이를 해결하기 위해서는 x-ms-format-detection을 메타테그에 설정하던지 아니면 해당 엘리먼트의 속성에 x-ms-format-detection 추가하고 none값을 주면 됩니다.
1. 속성에 주는 방법
<!DOCTYPE html>
<head>
<meta charset="UTF-8" />
</head>
<body>
<p x-ms-format-detection="none">111.222.111.222</p>
</body>
</html>
2. 메타테그에 주는 방법
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="UTF-8" />
<meta x-ms-format-detection="none"/>
</head>
<body>
<p>111.222.111.222</p>
</body>
</html>
끝~
반응형