兼容性—IE6定位

Posted 影子疯

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了兼容性—IE6定位相关的知识,希望对你有一定的参考价值。

父级元素宽高为奇数时,绝对定位的right和bottom会有1px的偏差

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
        .box{
            width: 401px;
            height: 401px;
            background: red;
            position: relative;
        }
        .content{
            width: 200px;
            height: 200px;
            background: blue;
            position: absolute;
            right: 0;
            bottom: 0;
        }
    </style>
</head>
<body>
    <div class="box">
        <div class="content"></div>
    </div>
</body>
</html>

IE6显示效果如下:

解决方案:避免设置父级元素的宽高为奇数

以上是关于兼容性—IE6定位的主要内容,如果未能解决你的问题,请参考以下文章

ie6, ie7兼容性问题以及处理办法

十条jQuery代码片段助力Web开发效率提升

十条jQuery代码片段助力Web开发效率提升

css笔记1

兼容IE6的最小高度代码实例

一行代码解决各种IE兼容问题,IE6,IE7,IE8,IE9,IE10