梗概
- 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");