JS로 CCS 스타일의 속성값을 알아낼 수 있는 짝꿍을 소개합니다! getComputedStyle와 getPropertyValue입니다. getComputedStyle은 객체형태로 반환해주고 getPropertyValue로 속성값을 가져올 수 있다고 합니다. getComputedStyle 구문 var style = window.getComputedStyle(element[, pseudoElt]); * element : 속성값을 얻으려는 요소 * pseudoElt : 의사요소(=pseudo-elements, ::after, ::before, ::marker등등... )를 지정하는 문자열. 보통 생략되거나 null이어야 함 getComutedStyle 구문 매개변수로 지정된 CSS속성의 값을 반환합니다. v..