Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
element-box
Advanced tools
Work easily with an element's position and dimensions
npm install element-box
I work with the dimensions and positions of elements rarely enough to forget the details, but often enough to frustrate me when it hampers my flow and productivity:
element.getBoundingClientRect()
include the borders or not?clientWidth
and offsetWidth
?document.documentElement
for that, or not?This library is both an abstraction and a thinking model for DOM dimensions and position. It adds functions that are otherwise time-consuming to write on your own.
getContentBox(element: HTMLElement): DOMRect
Element's dimensions without border, padding, and margin — element.getBoundingClientRect() - border - padding
.
getPaddingBox(element: HTMLElement): DOMRect
Element's dimensions with padding but without border and margin — element.getBoundingClientRect() - border
.
getBorderBox(element: HTMLElement): DOMRect
Equivalent to element.getBoundingClientRect()
.
getMarginBox(element: HTMLElement): DOMRect
Element's dimensions with padding, border, and margin — element.getBoundingClientRect() + margin
.
getWindowBox(): DOMRect
Something like window.getBoundingClientRect()
if it existed. If you are wondering, document.documentElement.getBoundingClientRect()
won't probably do what you want.
getElementBox(element: HTMLElement, options): DOMRect
Would be easier to show you examples:
// like that:
getElementBox(element, {
includePadding: true,
includeBorder: false,
includeMargin: false
})
// or like that:
getElementBox(element, 'content-box')
getElementBox(element, 'padding-box')
getElementBox(element, 'border-box')
getElementBox(element, 'margin-box')
FAQs
Work easily with an element's position and dimensions
The npm package element-box receives a total of 9 weekly downloads. As such, element-box popularity was classified as not popular.
We found that element-box demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.