3px solution in IE6 browser,
Solution for 3px in IE6:
Suggestion: writing code as much as possible can effectively improve learning efficiency and depth.
The 3px problem in IE6 is mainly caused by irregular writing. For example, we need to write a structure of two or both columns. The Code is as follows:
<! DOCTYPE html>
In the above Code, the div on the left is floating, and the second div is not floating. In this way, 3px is generated in IE6. In fact, this problem is because the code writing is not standard. In the standard browser, because the first div floats out of the Document Stream, the subsequent div will fill the position of this div, the Display Effect of the web page is that the first div will overwrite the second div, which is not a standard writing. The solution is to make the second div floating. The modification code is as follows:
<! DOCTYPE html>
The original address is: http://www.softwhy.com/forum.php? Mod = viewthread & tid = 3388.
For more information, see: http://www.softwhy.com/divcss/