Socket
Socket
Sign inDemoInstall

computed-styles

Package Overview
Dependencies
0
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    computed-styles

Get the computed styles of a DOM element in a cross browser consistent manner


Version published
Weekly downloads
1.3K
decreased by-41.57%
Maintainers
1
Install size
9.65 kB
Created
Weekly downloads
 

Changelog

Source

1.1.2 (2015-10-28)

  • Fix for IE11

Readme

Source

computed-style

NPM version Build Status Downloads

Get the computed styles of a DOM element in a cross browser consistent manner

Install

npm install computed-styles

Usage

Get computed styles

import computedStyles from 'computed-styles';

computedStyles(document.querySelector('#node')) // returns computed styles as an object

Convert computed styles to inline styles

import computedStyles from 'computed-styles';

var node = document.querySelector('#node');
computedStyles(node, node.styles);

Copy computed styles to another element

import computedStyles from 'computed-styles';

var source = document.querySelector('#source');
var target = document.querySelector('#target');
computedStyles(source, target.styles);

See API

License

MIT © J. Harshbarger

Keywords

FAQs

Last updated on 28 Oct 2015

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc