适用于除Firefox以外的所有浏览器

时间:2013-10-06 09:53:16

标签: html css

我正在尝试在HTML和CSS中做一件简单的事情,但由于某些原因它在Firefox中不起作用 这是代码:

<!DOCTYPE html>
<html>
<head>
    <style type="text/css">
        #list{
            width:100%;
            min-height:27px;
            position:absolute;
        }
        .listBTN{
            width:20px;
            height:20px;
            background:url(list.png) no-repeat center center;
            float:left;
        }
    </style>
</head>
<body>
<div id="list">
    <div class="listBTN"></div>
    <div class="listBTN"></div>
    <div class="listBTN"></div>
</div>
</body>
</html>

问题:
enter image description here

1 个答案:

答案 0 :(得分:3)

这看起来像浏览器缩放问题。确保您的Firefox没有缩小:点击 Ctrl + 0 将其重置为100%。