Skip to content

Instantly share code, notes, and snippets.

View paxelpixel's full-sized avatar
🤷‍♂️
writing pixels on screen

paxel paxelpixel

🤷‍♂️
writing pixels on screen
  • Los Angeles CA, USA
View GitHub Profile
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDFbcTbSIYZ30FJCw3eXOYFKB9XDy1l9Hv2ETxE7xn+8IHiflLm3DYb0mF0Shhaouj3E6QXIduh9IDhUjt75L1KOp+YF73WMmylm1IBu2ZL+9e76TrUVlZNEqDlCvjugntiyxtUqYpAyPWXVpaRLxsyy07XV6uvjyLEO8EhOb0gCiIoodmmwP5neHslcntFvUGsb0vYNO56kBwFBrEv7x+rRRaV6tRsGSyITkALb55BbwaLWPsyUoa11hU48GGT56ZkKBETxfi5pFY2WUlLoHt+qyty+Bfh+1EVi+y+gIA/rqYhyIJZkyiaJPGHpk+TkYS9sFAsxMRWH6nC9p/JxNYmDOGoapH9hV3tn2JvUwXsORREpfvxYhY1w2CMSUw4/YuAgzZVX7XhcijK68vKwH5RtA3ued75IfBurzxNCh/+WavYFbi0t33qSE3xYgU9QGEjIm5gDFf7PwLZI0Gf4ArKijzWqf6o3mhSGrFa6yPX45MdOQ58QNON5bW4nsbXLLc= jhon@jhon-lenovo
@paxelpixel
paxelpixel / what-forces-layout.md
Created June 17, 2022 09:31 — forked from paulirish/what-forces-layout.md
What forces layout/reflow. The comprehensive list.

What forces layout / reflow

All of the below properties or methods, when requested/called in JavaScript, will trigger the browser to synchronously calculate the style and layout*. This is also called reflow or layout thrashing, and is common performance bottleneck.

Generally, all APIs that synchronously provide layout metrics will trigger forced reflow / layout. Read on for additional cases and details.

Element APIs

Getting box metrics
  • elem.offsetLeft, elem.offsetTop, elem.offsetWidth, elem.offsetHeight, elem.offsetParent