“Jak usunąć poziomy zwój na Elementor” Kod odpowiedzi

Elementor Usuń poziomy zwój

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

Jak usunąć poziomy zwój na Elementor

(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

Odpowiedzi podobne do “Jak usunąć poziomy zwój na Elementor”

Pytania podobne do “Jak usunąć poziomy zwój na Elementor”

Więcej pokrewnych odpowiedzi na “Jak usunąć poziomy zwój na Elementor” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu