Y
Y
yativ_sobb2022-01-13 12:18:14
css
yativ_sobb, 2022-01-13 12:18:14

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

1 answer(s)
N
Nadim Zakirov, 2022-01-13
@zkrvndm

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);
});

Further, already assembled styles can be processed as you like.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question