这是firefox的css bug

时间:2013-07-22 23:48:26

标签: css firefox

这是我的测试代码:

<!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>Untitled Document</title>
</head>
<style>
*{
margin:0;
paddin:0;
}
.warp{
    background:#0F6;
    position:relative;
    width:100px;
    height:100px;
    left:50%;
}
.line{
    position:fixed;
    width:10px;
    height:120px;
    background:#F00;
}
</style>
<body>
<div class="warp">
    <div class="line"></div>
</div>
</body>
</html>

在chrome和ie10中“line”div在左侧,但在firefox中,它保留div“warp”,“line” 是一个“固定位置”div,它应该像chrome一样呈现,即我认为。

http://jsfiddle.net/AWdqY/

1 个答案:

答案 0 :(得分:1)

您只需在元素(left: 0)上定义属性。

http://jsfiddle.net/AWdqY/1/