I would like to dump all css key/value pairs for an html tag.
In particular, I would like to learn the css properties for <audio>
tag, so I can try to customize the look.
document.getElementById('myaudio').style
returns a CSSStyleDeclaration object but length returns 0 and I cannot figure out to iterate over the key/value pairs.
Thank you