인터넷 검색을 한 후 "Blue Ink"가 남긴 설명이있는 토론을 우연히 발견했습니다.
페이지를 검사하면서 다음을 사용하여 페이지를 재현했습니다.
@ -ms-viewport {너비 : 장치 너비; }
스크롤바가 투명 해집니다. 콘텐츠가 이제 전체 화면을 차지하므로 의미가 있습니다.
이 시나리오에서 다음을 추가하십시오.
오버플로 -y : 자동;
스크롤바를 자동 숨기기
그리고에 부트 스트랩 반응-utilities.less 파일, 라인 (21)은 다음과 같은 CSS 코드를 찾을 수 있습니다
// IE10 in Windows (Phone) 8
//
// Support for responsive views via media queries is kind of borked in IE10, for
// Surface/desktop in split view and for Windows Phone 8. This particular fix
// must be accompanied by a snippet of JavaScript to sniff the user agent and
// apply some conditional CSS to *only* the Surface/desktop Windows 8. Look at
// our Getting Started page for more information on this bug.
//
// For more information, see the following:
//
// Issue: https://github.com/twbs/bootstrap/issues/10497
// Docs: http://getbootstrap.com/getting-started/#support-ie10-width
// Source: http://timkadlec.com/2013/01/windows-phone-8-and-device-width/
// Source: http://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/
@-ms-viewport {
width: device-width;
}
이 스 니펫은 문제의 원인입니다. 위의 주석 코드에 나열된 링크를 읽는 것이 좋습니다. (이 답변을 처음 게시 한 후에 추가되었습니다.)