get-specified-style.js
v1.1.0
Published
An API instead of getComputedStyle which is able to get spedified value NOT culuculated value.
Downloads
27
Readme
getSpecifiedStyle
getComputedStyle vs getSpecifiedStyle
Assume that viewport width is 1024px.
<div>hoge</div>div {
width: auto;
}var element = document.querySelector('div');
var spedifiedStyle = getSpecifiedStyle(element);
var computedStyle = getComputedStyle(element);
console.log(spedifiedStyle.getPropertyValue('width'));//auto
console.log(computedStyle.getPropertyValue('width'));//1024pxInstallation
bower install get-specified-style.jsor
yarn add get-specified-style.jsLoad with script tag
<script src="/path/to/get-specified-style.js">Usage
Almost the same as getComputedStyle
let style = getSpecifiedStyle(element[, pseudoElt]);API
getPropertyValue
style.getPropertyValue(propertyName);//any valuegetPropertyPriority
style.getPropertyPriority(propertyName);//'' or 'important'getSpecificity
style.getSpecificity(propertyName);// 0~10000Dependencies
- specificity - Calculate the specificity of a CSS selector
