Get the calculated style in the CSS element (after cascading/final style)

Get the calculated style in the CSS element (after cascading/final style)
To obtain the calculated style in a CSS element (that is, the final style after cascading), browsers that support W3C can use the document.defaultView.getComputedSyle method.
This method accepts two parameters. The first parameter is the element to be styled, and the second parameter is a pseudo-element string (for example: ":after". If there is none, it is set to null.
This method returns a StyleSheetDeclaration object, and the final style property value is obtained through the getPropertyValue(propertyName) of the object. Note that the proprtyName here is of type wrold-world (eg background-color).
In IE, the element.currentStyle[propertyName] method is used. Note that the propertyName here is of the worldWorld type (such as: backgroundColor).

<<:  What is the use of the enctype field when uploading files?

>>:  JavaScript implementation of magnifying glass details

Recommend

Detailed tutorial on running multiple Springboot with Docker

Docker runs multiple Springboot First: Port mappi...

Detailed tutorial on using cmake to compile and install mysql under linux

1. Install cmake 1. Unzip the cmake compressed pa...

How to Clear Disk Space on CentOS 6 or CentOS 7

Following are the quick commands to clear disk sp...

Docker online and offline installation and common command operations

1. Test environment name Version centos 7.6 docke...

CSS menu button animation

To write a drop-down menu, click the button. The ...

How to automatically deploy Linux system using PXE

Table of contents Background Configuring DHCP Edi...

A brief discussion on how to customize the host file in Docker

Table of contents 1. Command 2. docker-compose.ym...

Linux kernel device driver virtual file system notes

/******************** * Virtual File System VFS *...

Detailed explanation of the use of grid properties in CSS

Grid layout Attributes added to the parent elemen...

HTML uses canvas to implement bullet screen function

Introduction Recently, I needed to make a barrage...

Index Skip Scan in MySQL 8.0

Preface MySQL 8.0.13 began to support index skip ...

HTML code to add quantity badge to message button

HTML code: <a onclick="goMessage();"...

How does the composite index of MySQL take effect?

Table of contents background Understanding compos...

Sample code for making desktop applications with vue + Electron

1.vue packaging Here we use the vue native packag...