0

我用css做了一些绝对定位。但是在以下情况下,为什么在firstBox中,顶部左侧的值被忽略了?(我希望顶部为 100 像素,左侧为 100 像素)。第二个盒子正确定位。

<html>
<head>
<title>Testing</title>
<style type="text/css">
#firstBox {
  color: white;
  width: 500px;
  padding: 1em;
  background: red;
  position::absolute;
  top:100px;
  left:100px;
 z-index:2;
}
#secondBox {
    color: white;
    width: 500px;
    padding: 1em;
    background: blue;
    position: absolute;
    top: 100px;
    left: 100px;
    z-index: 0;
}
</style>
</head>
<body>
<div id="firstBox"> The First Box! </div>
<div id="secondBox"> The Second Box! </div>
</body>
</html>
4

1 回答 1

0

这是因为您使用2个冒号forposition: absolute;#firstBox

我的小提琴

于 2012-10-04T17:20:36.837 回答