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>
  • 相关阅读:
    while 循环 。。
    数据运算,运算符
    字符串常用操作
    列表常用操作
    三级菜单
    杂七杂八
    简单的登陆程序001
    猜年龄游戏
    实现密文输入密码
    使用urllib2打开网页的三种方法
  • 原文地址:https://www.cnblogs.com/BigIdiot/p/3032227.html
Copyright © 2011-2022 走看看