获取指定元素的最终样式信息
index.html
<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8" />
  </head>
  <body>
    <h3>Hello, World!</h3>
    <script>
      const finalStyleObject = window.getComputedStyle(
        document.querySelector("h3")
      );
      console.log(finalStyleObject);
    </script>
  </body>
</html>
 
                    
                 
                
            
         
 浙公网安备 33010602011771号
浙公网安备 33010602011771号