bianco.force-reflow
v1.1.0
Published
[![Build Status][ci-image]][ci-url] [![NPM version][npm-version-image]][npm-url] [![NPM downloads][npm-downloads-image]][npm-url] [![MIT License][license-image]][license-url]
Downloads
221
Readme
bianco.force-reflow
Usage
import forceReflow from 'bianco.force-reflow'
// force the reflow on a single element
forceReflow(document.querySelector('#my-id'))
API
Table of Contents
forceReflow
Force the reflow of one or a list of DOM elements
Parameters
el
(HTMLElement | NodeList | Array) single or multiple DOM elements
Examples
import forceReflow from 'bianco.force-reflow'
// force reflow on a list of elements
forceReflow(document.querySelectorAll('.list'))
// force reflow on a single element
forceReflow(document.querySelector('.post'))
Returns any the argument received