


Frequently encountered browser compatibility issues_html/css_WEB-ITnose
1. The default margin and padding of browsers are different. The solution is to add a global *{margin:0;padding:0;} to unify.
2. IE6 double-margin bug: after the block attribute label is floated and there are horizontal margins, the margin displayed in IE6 is larger than the set value.
Solution: 1. Add display:inline; to the float label style control to convert it into an inline attribute.
2. How to use hack: margin: 10px 0 0 10px; *margin: 10px 0 0 10px; _margin: 10px 0 0 5px; IE7 recognizes the * attribute; IE6 recognizes the _ attribute
3. In ie6 and ie7, the element height exceeds the height set by yourself. The reason is that browsers before IE8 set the default row height for elements. The solution is to add overflow:hidden or set line-height to a smaller height.
.one{ height:5px; width:100px; background:#F60;}
The HTML has not changed, it is still
, which is displayed as:<🎜 in IE6 >
You can tell at a glance that this is more than 5px. Just change the CSS to one of the following two:
.one{ height:5px; width:100px; overflow:hidden; background:#F60;}/*--或--*/.one{ height:5px; width:100px; font-size:2px; line-height:2px; background:#F60;}
4. min-height does not work under IE6. The solution is to add height:auto !important;height:xxpx;where xx is the value set by min-height.
For some layers with variable content (such as user comments), we hope that it has a minimum height (such as 30px), so that even if the content is only one line of text, it will not be too ugly; at the same time It is hoped that when there is a lot of content, the height of the layer can be automatically expanded, which means height: auto is required. At this time, you can set the min-height attribute of css. min-height works in Firefox, but IE6 doesn't recognize it. You can use the following solution:
.div_class{ min-height:30px; height:auto !important; height:30px; }
!important compatibility is shown in the figure below:
5. Transparency IE uses filter:Alpha (Opacity=60), while other mainstream browsers use opacity: 0.6;
6. The img tag nested under the a (with href attribute) tag will have a border under IE. The solution is to add an img{border:none;} style.
7. Input border problem. Generally, you can use border:none; to remove the input border. However, due to a BUG (priority issue) in IE6 when parsing the input style, it is invalid under IE6.
The default CSS style of ie6, which involves border, is border-style:inset;border-width:2px; the browser first parses its own default CSS according to its own kernel parsing rules, and then parses what the developer wrote CSS to achieve the purpose of rendering tags. There is a bug in IE6's rendering of INPUT. border:none; is not parsed. Only when border-width or border-color is set will IE6 parse border-style:none;.
The solution is to use: border:0 or border:0 none; or border:none:border-color:transparent;. The third solution is recommended.
8. The problem of using margin between parent and child tags is that sometimes the margin of child tags in browsers other than IE (6/7) is transferred to the parent tag, but it is not transferred under IE6&7. The vertically adjacent border margins of two or more block-level boxes overlap, and the resulting border width is the largest of the adjacent border widths. Horizontal margins never coincide. Test code:
<body> <style type="text/css"> .box1{ height:150px; background:#CCC; } .box1_1{ height:50px; margin-top:50px; background:#AAA; } </style> <div class="box1"> <div class="box1_1">box1_1</div> </div></body>
The effect under chrome & FireFox & IE8 & IE9 is:
IE6 & The effect under IE7:
For these two display effects, I think IE6&IE7 are correct. I wonder if anyone can give an explanation.
The solution is to use padding between parent and child tags and margin between sibling tags.
9. Suppose there are two divs. The first one floats and the second one does not float. Under IE6, the second one will run to the edge of the first one, and there will still be a gap between them, but In standard browsers, the second block overlaps the first block. Test code:
<body> <style type="text/css"> div{ width:100px; height:100px; border:1px solid #CCC; } .one{ float:left; height:50px; } </style> <div class="one">One</div> <div class="two">Two</div></body>
In IE6 it is:
The solution is to change the design idea. If there is a need for two divs to overlap, you can use the following code to achieve it:
<body> <style type="text/css"> div{ width:100px; height:100px; border:1px solid #CCC; } .parent{ position:relative; } .one{ position:absolute; left:0; top:0; } </style> <div class="parent"> <div class="one">One</div> <div class="one">Two</div> </div></body>

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

The official account web page update cache, this thing is simple and simple, and it is complicated enough to drink a pot of it. You worked hard to update the official account article, but the user still opened the old version. Who can bear the taste? In this article, let’s take a look at the twists and turns behind this and how to solve this problem gracefully. After reading it, you can easily deal with various caching problems, allowing your users to always experience the freshest content. Let’s talk about the basics first. To put it bluntly, in order to improve access speed, the browser or server stores some static resources (such as pictures, CSS, JS) or page content. Next time you access it, you can directly retrieve it from the cache without having to download it again, and it is naturally fast. But this thing is also a double-edged sword. The new version is online,

This article demonstrates efficient PNG border addition to webpages using CSS. It argues that CSS offers superior performance compared to JavaScript or libraries, detailing how to adjust border width, style, and color for subtle or prominent effect

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

This article explains the HTML5 <time> element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit
