Firefox中宽度百分比的问题

时间:2010-12-28 19:49:32

标签: css firefox

我在使用Mozilla Firefox中的宽度时遇到问题。

在Firefox中: alt text

在Opera中: alt text

代码

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>

<head>
    <meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
    <meta name="author" content="adminite">

    <title>Untitled 2</title>
    <style>
    #cont {
    width:99.8%;
    height:125px;
    border:1px solid red;
    background-color:#1ea1de;
    margin: 0px 0px 0px 0px;
}</style>
</head>

<body>

<div id="cont">

</div>

</body>
</html>

1 个答案:

答案 0 :(得分:3)

可能是您没有重置浏览器默认样式。

尝试:

html, body{
  margin: 0;
  padding: 0;
}

如果是这种情况,您可能会受益于使用重置样式表,例如:

http://meyerweb.com/eric/tools/css/reset/