


Analysis of getBoundingClientRect in various commonly used browsers_javascript skills
First go to the test code
<SCRIPT> <br>alert(document.getElementById("w3124").getBoundingClientRect().top ); <br></SCRIPT>
The following are the alert results
IE, FF, Chrome: 208
Maxthon of IE kernel: 215
TheWorld of IE kernel: 217
When the body is added with margin: 0; padding: 0, IE, FF, Chrome and Maxthon are all 200, but only TheWorld is 202
Then when the DOCTYPE statement in the header of the HTML code is removed, the values of FF, Chrome, and Maxthon are all 200, and because IE enters Quirks mode, the value at this time is 202, while TheWorld is still 202
Conclusion
FF, Chrome, and Maxthon always adhere to the Standards Mode (Standards Mode). IE also enters the Standards Mode (Standards Mode) after adding a statement. Only TheWorld always adheres to the Quirks Mode. It's evil!
Suggestion
For compatibility, add margin:0;padding:0 to the body, and pay attention to adding the DOCTYPE statement (with it, IE is quite obedient)
Another:
1. Use green hope throughout the article Everyone can relax their eyes.
2. This is my first time posting a blog. My heart is fragile and I cannot withstand all kinds of blows. If there is anything wrong, please correct me. I will correct it humbly. Please be gentle, thank you
3. References

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Using locally installed font files in web pages Recently, I downloaded a free font from the internet and successfully installed it into my system. Now...

Realize the gap effect of card coupon layout. When designing card coupon layout, you often encounter the need to add gaps on card coupons, especially when the background is gradient...

How to obtain dynamic data of 58.com work page while crawling? When crawling a work page of 58.com using crawler tools, you may encounter this...

Why do negative margins not take effect in some cases? During programming, negative margins in CSS (negative...

The reason and solution for coding exceptions when using the request library to obtain HTML text content in the Node.js environment. During the development process of using Node.js, it is often necessary to...

iconfont...

Implementing responsive layouts using CSS When we want to implement layout changes under different screen sizes in web design, CSS...

The method of customizing resize symbols in CSS is unified with background colors. In daily development, we often encounter situations where we need to customize user interface details, such as adjusting...
