“como remover rolagem horizontal no elemento” Respostas de código

Elementor Remover rolagem horizontal

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

como remover rolagem horizontal no elemento

(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

Respostas semelhantes a “como remover rolagem horizontal no elemento”

Perguntas semelhantes a “como remover rolagem horizontal no elemento”

Mais respostas relacionadas para “como remover rolagem horizontal no elemento” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código