Answer the question
In order to leave comments, you need to log in
How to copy styles of all tags in body element using spinCSS or other plugins?
The people who used spinCSS, who knows how to highlight the entire window, namely the tag body?
Answer the question
In order to leave comments, you need to log in
To get the styles of all elements on the page, you need to iterate over these elements in a loop and request styles for each separately:
document.querySelectorAll('*').forEach(function(elem) {
style = getComputedStyle(elem);
console.log(style);
});
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question