zoukankan      html  css  js  c++  java
  • IE6下margin无效

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title></title>
    <style type="text/css">
    * {
        margin:0;
        padding:0;
    }
    .container {
        margin:20px;
        border:1px dotted black;
        background:#f2ffbf;
    }
    .box-model {
        width:100px;
        height:100px;
        margin:10px;
        background:#cf0;
        border:1px dotted black;
    }
    </style>
    </head>
    <body>
    <div class="container">
      <div class="box-model">box-a</div>
      <div class="box-model">box-b</div>
      <div class="box-model">box-c</div>
    </div>
    </body>
    </html>

    解决办法:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title></title>
    <style type="text/css">
    * {
        margin:0;
        padding:0;
    }
    .container {
        margin:20px;
        border:1px dotted black;
        background:#f2ffbf;
        zoom:1;
    }
    .box-model {
        width:100px;
        height:100px;
        margin:10px;
        background:#cf0;
        border:1px dotted black;
    }
    </style>
    </head>
    <body>
    <div class="container">
      <div class="box-model">box-a</div>
      <div class="box-model">box-b</div>
      <div class="box-model">box-c</div>
    </div>
    </body>
    </html>
  • 相关阅读:
    Manjaro mirror in china
    gnome3.X添加开机启动项
    ssh无密钥登陆的简单配置
    ESXi虚拟磁盘共享
    记录一次fat32格式U盘不识别问题
    更换内核后重编virtualbox内核模块
    宏定义字符串连接和符号粘贴
    kernel source reading notepad
    linux kernel tainted
    设计模式-观察者模式(Observer Pattern)
  • 原文地址:https://www.cnblogs.com/BigIdiot/p/3032227.html
Copyright © 2011-2022 走看看