Is it possible to get all css property values using JavaScript? For example, can I get all the values (poniter, resize, etc.) of the "cursor" property?
I know that I can get the value of a property from an element
element.style.cursor
But this obviously cannot show me all the possible meanings.
source
share