Gets runtime style of node as CSS.
style
CSS get style { return CSS(getAttribute('style')); }
Sets runtime style of node parsed as CSS.
set style(Object? cssText) { var css = CSS(cssText); setAttribute('style', css.style); }