Created
August 10, 2013 16:03
-
-
Save Maizify/6200989 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE HTML> | |
<html lang="zh-CN"> | |
<head> | |
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type"> | |
<title>神奇的margin</title> | |
</head> | |
<body> | |
<style> | |
body{ | |
margin:0; | |
} | |
#page { | |
width:300px; | |
float:left; | |
background:#DDD; | |
} | |
#inner1 { | |
margin-bottom:20px; /* firefox、chrome表现不一致 */ | |
/* padding-bottom:20px; */ /* 注释margin-bottom,改用padding-bottom,则表现一致 */ | |
background:red; | |
clear:both; | |
position:relative; | |
} | |
#inner2 { | |
float:left; | |
} | |
.clear { | |
clear:both; | |
} | |
</style> | |
<div id="page"> | |
<div id="outer1"> | |
<div id="inner1"> | |
<div id="inner2"> | |
我的顶上应该没空隙 | |
</div> | |
<div class="clear"></div> | |
</div> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment