same::
getComputedStyle
梗概
- return A live
CSSStyleDeclarationobject, which updates automatically when the element’s styles are changed.实例
指向原始笔记的链接 const para = document.querySelector("p"); const compStyles = window.getComputedStyle(para); compStyles.getPropertyValue("font-size"); compStyles.getPropertyValue("line-height");