function,

getStyle

FreeVue FreeVue Follow Apr 12, 2019 · 1 min read
getStyle
Share this

getStyle. 지정된 요소에 대한 CSS 규칙 값을 반환합니다.

Window.getComputedStyle()을 사용하여 지정된 요소에 대한 CSS 규칙 값을 가져옵니다.

const getStyle = (el, rulName) => getComputedStyle(el)[rulName]

// 예시
getStyle(document.querySelector('p'), 'font-size') // '16px'

[출처: http://30.surge.sh/]