หลังจาก googling เล็กน้อยฉันก็สะดุดในการอภิปรายที่ความคิดเห็นที่เหลือโดย "Blue Ink" ระบุ:
ตรวจสอบหน้าฉันจัดการเพื่อทำซ้ำโดยใช้:
@ -ms-viewport {width: device-width; }
ซึ่งทำให้แถบเลื่อนกลายเป็นโปร่งใส เหมาะสมแล้วเนื่องจากตอนนี้เนื้อหาเต็มหน้าจอ
ในสถานการณ์นี้เพิ่ม:
ล้น - y: อัตโนมัติ;
ทำให้แถบเลื่อนซ่อนอัตโนมัติ
และในbootstraps responsive-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;
}
ตัวอย่างนี้เป็นสิ่งที่ทำให้เกิดพฤติกรรม ฉันขอแนะนำให้อ่านลิงก์ที่ระบุไว้ในรหัสความคิดเห็นด้านบน (เพิ่มเข้ามาหลังจากที่ฉันโพสต์คำตอบนี้ครั้งแรก)