Window.getComputedStyle()
指定した
DOM
要素の全ての
css
属性を取得する函数
HTMLElement.style
とは違い、最終的に適用されるcssの値を取得することが出来る
特定の属性値は
getPropertyValue('{propertyName}')
で取得する
引数
Window.getComputedStyle(element, [, pseudoElt])
Reference
Window.getComputedStyle() - Web API | MDN
#2020-10-04
23:12:12