“cara menghapus gulungan horizontal pada elemen” Kode Jawaban

Elementor Hapus Gulungan Horizontal

// Remove horizontal scroll on mobile devices
html,body {
	overflow-x: hidden
}
Beautiful Boar

cara menghapus gulungan horizontal pada elemen

(function (debug) {
    var w = debug.documentElement.offsetWidth,
        t = debug.createTreeWalker(debug.body, NodeFilter.SHOW_ELEMENT),
        b;
    while (t.nextNode()) {
        b = t.currentNode.getBoundingClientRect();
        if (b.right > w || b.left < 0) {
            t.currentNode.style.setProperty('outline', '1px dotted red', 'important');
            console.log(t.currentNode);
        }
    };
}(document));
Thoughtless Tern

Jawaban yang mirip dengan “cara menghapus gulungan horizontal pada elemen”

Pertanyaan yang mirip dengan “cara menghapus gulungan horizontal pada elemen”

Lebih banyak jawaban terkait untuk “cara menghapus gulungan horizontal pada elemen” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya