<!DOCTYPE html>
<html lang="en">
<head>
<style>
*{
margin: 0;
padding: 0;
}
.wrapper{
height: 200px;
width: 200px;
background-color: black;
margin-left: 50px;
margin-top: 50px;
/*在父级加个顶,设置上边框,然后颜色设置为透明transparent,嘿嘿*/
/*这样确实能达到目的,但是差1像素,还是不合格*/
/*border-top: 1px solid red;*/
}
.content{
width: 100px;
height: 100px;
background-color: green;
margin-left: 20px;
/*问题出现这这里*/
margin-top: 20px;
/*只有 margin-top 的值大于父级的 margin-top 的值时才有效*/
/*并且会带着父级一起向下*/
/*margin-top: 120px;*/
/*margin-top: 300px;*/
/*margin 没有“顶”*/
/*那就在父级加个顶???设置上边框,然后颜色设置为透明transparent,嘿嘿*/
/*这个也无效*/
/*margin-bottom: 10px;*/
}
</style>
<meta charset="UTF-8">
<title>bug--margin塌陷</title>
</head>
<body>
<div class="wrapper">
<div class="content"></div>
</div>
</body>
</html>
bug--margin塌陷
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- app测试时怎样避免没有测试完善出现的bug,比如说在6上运行没事在4上运行就出bug了。(胡忠应) 提示:1.项...
- 已64位VMware Workstation Pro12为例 安装64位linux是报错 系统弹出64为报错是因为...