Using Class Name In Css Value
I am currently doing some styling and have thought up an interesting way to do something. I want to create a piece of text that stands out among every other bit of text on the page
Solution 1:
CSS attr
Theoretically, this type of thing is what the CSS attr
property could be used for when browser support exists. Note that this won't work now, but when browser support does exist, it might look something like this:
HTML
<spanclass="impact"data-shadow="#008080">Impact</span>
CSS
.impact {
/* you text and positioning styles here */text-shadow: 2px2pxattr(data-shadow);
}
You can read more about the attr
property here:
https://developer.mozilla.org/en-US/docs/Web/CSS/attr
But for now...
Your best bet is probably to continue to use JavaScript, but instead of appending the hex code to the class name, store the hex value in a data attribute of the element, allowing you to keep the class name consistent for all instances of that element.
HTML
<spanclass="impact"data-shadow="#fff">Impact</span>
CSS
.impact {
/* your text and position styles here */
}
JS
var el = document.querySelector(".impact"),
shadow = el.dataset.shadow;
el.style.textShadow = '2px 2px ' + shadow;
Here's a JSFiddle for reference: http://jsfiddle.net/galengidman/xx6r1n2o/
Post a Comment for "Using Class Name In Css Value"