0

我正在尝试在 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>

问题:
在此处输入图像描述

4

1 回答 1

3

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

于 2013-10-06T10:25:51.100 回答