Sau khi googling một chút, tôi tình cờ thấy một cuộc thảo luận trong đó một bình luận để lại bởi "Blue Ink":
Kiểm tra các trang, tôi quản lý để sao chép nó bằng cách sử dụng:
@ -ms-viewport {width: chiều rộng thiết bị; }
mà làm cho các thanh cuộn trở nên trong suốt. Có ý nghĩa, vì nội dung bây giờ chiếm toàn bộ màn hình.
Trong kịch bản này, thêm:
tràn-y: tự động;
làm cho thanh cuộn tự động ẩn
Và trong tệp bootstraps responsive-ích.less, dòng 21 bạn có thể tìm thấy mã CSS sau
// 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;
}
Đoạn trích này là những gì gây ra hành vi. Tôi khuyên bạn nên đọc các liên kết được liệt kê trong mã nhận xét ở trên. (Chúng đã được thêm vào sau khi tôi ban đầu đăng câu trả lời này.)