Div CSS Layout FAQ: Gap between two layers (IE 3px bug)
Source: Internet
Author: User
The problem of css| is common to the novice friends, do not know how to be good, can not think of solutions.
In fact, this is the legendary "IE 3px bug." The solution is also relatively simple. Take a look at the following example instructions.
gap between two layers in IE (ie 3px bug) <! DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 strict//en" "Http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" >
<meta http-equiv= "Content-type" content= "text/html; Charset=utf-8 "/>
<title>YourHomePage.com.cn</title>
<style type= "Text/css" >
<!--
#left {
Float:left;
width:200px;
height:100px;
Background: #f00;
}
#right {
width:200px;
height:100px;
Background: #fc0;
}
-->
</style>
<body>
<div id= "left" >YourHomePage.com.cn</div>
<div id= "right" >YourHomePage.com.cn</div>
</body>
Float method for solving 3px bugs In this example, we can solve the IE 3px bug by applying float:left floating to the right layer.
<! DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 strict//en" "Http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" >
<meta http-equiv= "Content-type" content= "text/html; Charset=utf-8 "/>
<title>YourHomePage.com.cn</title>
<style type= "Text/css" >
<!--
#left {
Float:left;
width:200px;
height:100px;
Background: #f00;
}
#right {
Float:left;
width:200px;
height:100px;
Background: #fc0;
}
-->
</style>
<body>
<div id= "left" >YourHomePage.com.cn</div>
<div id= "right" >YourHomePage.com.cn</div>
</body>
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.
A Free Trial That Lets You Build Big!
Start building with 50+ products and up to 12 months usage for Elastic Compute Service