zoukankan      html  css  js  c++  java
  • div嵌套引起的margintop不起作用(子div设定margintop,导致父div与其他元素有间隙)

    问题:嵌套div中margin-top转移问题的解决办法(子div设定margin-top,导致父div与其他元素有间隙)
    如图:

              

    在这浏览器中,有两个嵌套关系的div,如果外层div的父元素padding值为0,那么内层div的margin-top或者margin-bottom的值会“转移”给外层div。

     1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
     2 <html xmlns="http://www.w3.org/1999/xhtml">
     3 <head>
     4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
     5 <title>无标题文档</title>
     6 </head>
     7 
     8 <body>
     9 <div style="background-color:#FF0000;300px; height:100px">上部层</div>
    10 
    11 <div style="background-color:#009900; 300px; height:300px;overflow:hidden "> <!--父层-->
    12      <div style="margin:50px; background-color:#000000;200px; height:200px"">子层</div>
    13 </div>
    14 
    15 </body>
    16 </html>

    原因:盒子没有获得 haslayout  造成 margin-top无效

    解决办法:

    1、在父层div加上:overflow:hidden;(我推荐用此)

    2、把margin-top外边距改成padding-top内边距 ;

    3、父元素产生边距重叠的边有不为 0 的 padding 或宽度不为 0 且 style 不为 none 的 border。

        父层div加: padding-top: 1px;

    4、让父元素生成一个 block formating context,以下属性可以实现
        * float: left/right
        * position: absolute
        * display: inline-block/table-cell(或其他 table 类型)
        * overflow: hidden/auto

       父层div加:position: absolute;

    原文地址:http://blog.sina.com.cn/s/blog_6bec36f9010110w9.html

  • 相关阅读:
    poj1328
    xml入门简介--两天学会xml
    php的一些特殊用法
    数据结构(一)
    队列的 基本操作
    栈的 基本操作
    线性表----单链表
    线性表----顺序表
    数据结构
    链式队列
  • 原文地址:https://www.cnblogs.com/zdp06623/p/3088913.html
Copyright © 2011-2022 走看看