最新下载
热门教程
- 1
 - 2
 - 3
 - 4
 - 5
 - 6
 - 7
 - 8
 - 9
 - 10
 
css margin叠加问题
时间:2022-07-02 12:17:24 编辑:袖梨 来源:一聚教程网
w3c认为margin叠加是合理的。不管是不是bug,但是这个问题真的存在。看下面这个例子:
- !DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.*w**3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 - html xmlns="http://www.**w*3.org/1999/xhtml">
 - head>
 - meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
 - head>head>
 - style type="text/">
 - *{padding:0;margin:0;}
 - .box{background:#ccc; }
 - .content{background:#eee;margin: 20px auto;}
 - .an-box{ margin:50px auto;background:#999999;}
 - style>
 - head>
 - body>
 - div class="box">
 - div class="content">margin: 20px autodiv>
 - div class="content">margin: 20px autodiv>
 - div>
 - div class="box">
 - div class="content">margin: 20px autodiv>
 - div>
 - div class="box">
 - div class="content">margin: 20px autodiv>
 - div>
 - div class="an-box">margin: 50px autodiv>
 - body>
 - html>
 
解决这个问题的方法有不少,先来看看这个,在外层的容器中加:overflow:hidden;zoom:1;
- !DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.*w**3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 - html xmlns="http://www.**w*3.org/1999/xhtml">
 - head>
 - meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
 - head>head>
 - style type="text/">
 - *{padding:0;margin:0;}
 - .box{background:#ccc; overflow:hidden;zoom:1 }
 - .content{background:#eee;margin: 20px auto; }
 - .an-box{ margin:50px auto;background:#999999;}
 - style>
 - head>
 - body>
 - div class="box">
 - div class="content">这里两个还是存在叠加margin: 20px autodiv>
 - div class="content">这里两个还是存在叠加margin: 20px autodiv>
 - div>
 - div class="box">
 - div class="content">margin: 20px autodiv>
 - div>
 - div class="box">
 - div class="content">margin: 20px autodiv>
 - div>
 - div class="an-box">margin: 50px autodiv>
 - body>
 - html>
 
还有外层的容器中加边框属性,在叠加元素加空块状元素等等。。还有就是用padding来取代margin
相关文章
- 炉石传说标准模式星舰补水德卡组分享 11-04
 - 炉石传说深暗领域版本蛋猎卡组分享 11-04
 - 梦幻西游法宝合成公式是什么-法宝合成公式大全 11-04
 - 过山车之星2安排工作时间表作用介绍 11-04
 - 过山车之星2看游客想法作用介绍说明 11-04
 - 逃离鸭科夫大兴兴BOSS怎么打 大兴兴BOSS打法攻略 11-04