cssattr.js
cssattr.js copied to clipboard
Set css values by html element attributes
Hi @FWeinb,
I tried to use cssattr.js to set data attributes as css values without success.
The data attribute is set to html element
<div data-width="200">
ideal would be full value like
<div data-width="50%">
and it should be set as css value
width: attr(data-width);
Is it possible with cssattr.js?