返回指定元素的CSS规则的值。
使用 Window.getComputedStyle() 获取指定元素的CSS规则的值。
Window.getComputedStyle()
const getStyle = (el, ruleName) => getComputedStyle(el)[ruleName];
getStyle(document.querySelector('p'), 'font-size'); // '16px'