Is there a way to retrieve all CSS properties for each class that matches a specific element?
I have the class names of my element from
this.className
How can I go about getting all the CSS styles for each class name?
Should I compare or search within the stylesheets?
var sheets = document.styleSheets;
I know how to get the CSS styles for an element, but not for a specific class name.
Thank you for your assistance.
Update
This is not a duplicate question as I am specifically looking for the properties of a CSS class. It's a unique inquiry in that regard.