margin

margin

[TOC]

一、布局与尺寸

1、margin普通情况下不影响可视尺寸,只有元素在 充分利用可用空间 的时候才影响可视尺寸

2、value可以是负值

3、可以用来实现流体布局

4、内联(inline)元素垂直方向的margin是没有任何影响的

图片左侧定位

 <style>
        .point01 .box{overflow: hidden}
        .point01 .box >img{float: left;width: 140px}
        .point01 .box >p {margin-left: 140px}
    </style>
<div class="point01">
    <div class="box">
        <img src="./img/test.png" alt="">
        <p>文字内容。文字内容。文字内容。文字内容。文字内容。文字内容。文字内容。文字内容。文字内容。文字内容。文字内容。文字内容。文字内容。文字内容。文字内容。文字内容。文字内容。文字内容。文字内容。文字内容。文字内容。文字内容。文字内容。文字内容。文字内容。文字内容。文字内容。。。</p>
    </div>
</div>
左侧布局.png

流体布局右侧固定

style>
    .point02 .box {
        overflow: hidden
    }

    .point02 .box>img {
        float: left;
        margin-left: -140px;
    }

    .point02 .full{
        width: 100%;
        float: left;
    }
    .point02 .box p {
        margin-right: 140px
    }
</style>
<div class="point02">
    <div class="box">
        <div class="full">
<p>文字内容。文字内容。文字内容。文字内容。文字内容。文字内容。文字内容。文字内容。文字内容。文字内容。文字内容。文字内容。文字内容。文字内容。文字内容。文字内容。文字内容。文字内容。文字内容。文字内容。文字内容。文字内容。文字内容。文字内容。文字内容。文字内容。文字内容。。。</p>
        </div>
        <img src="./img/test.png" width="140">
       </div>
</div>

效果如下,注意:

.point02 .box>img { float: left; margin-left: -140px; }

[图片上传中...(等高.png-b3fe0c-1525828977161-0)]

等高布局:



<h3>等高</h3>
<style>
    .point04 .box {
        overflow: hidden;
    }

    .point04 .c_left,
    .point04 .c_right {
        float: left;
        width: 300px;
        margin-bottom: -9999px;
        padding-bottom: 9999px;
    }
    .c_left{
        background: gray;
    }
    .c_right{
        background: red;
    }
</style>
<div class="point04">
<div class="box c_left">
    <h4>正方观点</h4>
    <p>观点1111</p>
</div>
<div class="box c_right">
    <h4>反方观点</h4>
    <p>观点1111</p>
    <p>观
        点1111</p>
    <p>观点1111</p>
    <p>观点1111</p>
</div>
</div>

效果:

等高.png

解析:

两个padding和margin把页面拉的特别长,最终显示的是内容撑开的父亲的大小,其他的地方都被遮挡了

但是还是建议用table-ceil

二、margin合并

三种合并场景:

  1. 相邻元素合并

    <style>
        .point06  p{
           margin: 1 em 0;
        }
    
        .point06 .container>h2 {
            font-size: 128px;
            margin-top: 100px;
            color: #fff;
        }
    </style>
    <div class="point06">
       <p>第一行</p>
       <p>第二行</p>
       <p>第三回</p>
       <p>第四行</p>
       <p>第五行</p>
       <p>第六行</p>
    </div>
    
    
    ![margin合并.png](https://upload-images.jianshu.io/upload_images/3819791-2a475fc8031d382a.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
  1. 父级和第一个/最后一个子元素

    eg:banner里边有自己的内容,如果内容要靠margin靠中间的话,会把banner挤下来的,如何解决这种功能问题?注释中的四种方法

    <style>
        .point05 {}
    
        .point05 .container {
            /* overflow: hidden; *//*格式化父元素*/
            /* border-top: 1px solid gray; *//*父元素设置border-top的值*/
            /* padding: 1px; *//*父元素设置padding*/
            max-width: 1020px;
            height: 300px;
            background: green;
        }
    
        .point05 .container>h2 {
            font-size: 128px;
            margin-top: 100px;
            color: #fff;
        }
    </style>
    <div class="point05">
        <h1> i am the title </h1>
        <div class="container">
            <!-- <a>123</a> --><!--   父元素和第一个子元素之间添加内敛元素进行分离-->
            <h2>this is test</h2>
        </div>
    </div>
    
    
margin合并.png
  1. 空块级元素的margin合并

    如果父亲里边有一个空元素,上下margin都是10 结果父元素的高度只有10 因为子元素的上下margin合并了

    
    <style>
       .point07 .father{
            overflow: hidden;
        }
        .point07 .son{
            margin: 10px 0;
            /* padding-top: 1px; */
            /* border-top: 1px solid green; */
            /* min-height: 1px */
        }
    </style>
    <div class="point07">
    
    <div class="father">
        <div class="son">
            <!-- 12 -->
        </div>
    </div>
    </div>
    

三种合并规则:

  1. 正正取大
  2. 正负相加
  3. 负负最负

三、margin:auto

前提:

1、div等元素,在没有设置widthheight的时候 他也会自动填满容器<div></div>

2、有时候,元素没有设置width height 也会自动填充对应的方位

div{
    position:absolute;
    left:0;right:0;
}

Margin:auto 的属性值就是基于以上两点实现的,填充规则如下:

  1. 一侧定值,一侧auto 那么auto剩下的空间大小
  2. 两边都是auto ,那么平分剩余空间大小

如下几个例子:

margin_left01.png
margin_auto.png
margin.png

margin:auto高度不居中的问题:

margin:auto居中的前提是自动填充的功能,但是垂直高度上,本来div都不会自动填充,所以也不会自动分配margin进行填充了。

如果要用margin:auto实现垂直居中,可以使用手动创建垂直自动填充功能进行居中

不兼容ie8

<style>
    .point08 .father{
        width: 300px;
        height: 300px;
        background: grey;
        position: relative;
    }
    .point08 .son {
        width:200px;
        height: 200px;
        background: red;
        position: absolute;
        top: 0;bottom: 0;left: 0;right: 0;
        margin: auto;
    }

</style>
<div class="point08">
    <div class="father">
        <div class="son">
            i am the son 
        </div>
    </div>
</div>

之前我以为这里的垂直居中是因为positiontop bottom的拉伸作用使元素上上不去下下不来才居中的,但是这里如果我们将.point08 .sonmargin:auto删除,将不再居中,所以position只是用来提供自动填充的功能

还有一种,如果不考虑水平居中的话,可以如下:

.point08 .father{
        width: 300px;
        height: 300px;
        background: grey;
        /* position: relative; */
        writing-mode: vertical-lr;
    }

四、margin 无效的情况

  1. 内联(inline) 非替换(除了类似于<img> <iframe>的元素)元素的高度设置margin没用

  2. tr td 或者 table-cell table-row 的元素,但是table-caption table 或者是inline-table就没有问题了

  3. 父子margin合并的时候,就可能让子的margin没用

  4. 绝对定位的非定位方向的margin,因为设置了right,这样left没有设置的时候,调试的再大也没有用了,但是如果给left:0一个值,元素立马会因为margin:1000px而消失不见或者十分靠右

             position: absolute;
            top: 0;bottom: 0;right: 10px;
            margin-left: 1000px;
    
  5. 定高容器的margin-bottom 或者是定宽的margin-right

  6. 鞭长莫及导致margin失效

     <style>
           .point09 .son1 {
               float: left;
               width: 256px;
           }
           .point09 .son2 {
               overflow: hidden;
               margin-left: 250px;
           }
       </style>
       <div class="point09">
           <div class="father">
               <img src="./img/test.png" alt="" class="son1">
               <div class="son2">
                   i am the son
               </div>
           </div>
       </div>
    

    这个时候,只要margin小于256 无论正负都不变化

  7. 内联特性导致的margin无效

     <style>
            .point09 .father {
    
            }
            .point09 .son1 {
                height: 96px;
                margin-top: -600px;
    
    
            }
        </style>
        <div class="point09">
            <div class="father">
                <img src="./img/test.png" alt="" class="son1">
                <div class="son2">
                    i am the son
                </div>
               
            </div>
        </div>
    

    这个时候,margin-top往上一定程度后就无法再移动了,比如margin-top:-200px;上移动了200px;但是在将其改为300还是200的位置,并不会因此而进行改变

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,530评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 86,403评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,120评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,770评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,758评论 5 367
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,649评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,021评论 3 398
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,675评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,931评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,659评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,751评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,410评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,004评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,969评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,203评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,042评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,493评论 2 343

推荐阅读更多精彩内容