Setelah googling sedikit saya menemukan diskusi di mana komentar yang ditinggalkan oleh "Tinta Biru" menyatakan:
Memeriksa halaman, saya berhasil mereproduksinya dengan menggunakan:
@ -ms-viewport {width: lebar perangkat; }
yang menyebabkan scrollbar menjadi transparan. Masuk akal, karena konten sekarang mengambil seluruh layar.
Dalam skenario ini, menambahkan:
overflow-y: otomatis;
membuat scrollbar menyembunyikan otomatis
Dan dalam file bootstraps responsif-utilities.less, baris 21 Anda dapat menemukan kode CSS berikut
// 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;
}
Cuplikan ini yang menyebabkan perilaku. Saya sarankan membaca tautan yang tercantum dalam kode komentar di atas. (Mereka ditambahkan setelah saya awalnya memposting jawaban ini.)