0

我创建了一个 id 为“descriptions”的 div,但它无法识别位置声明。这是 Firefox 中的错误,还是我在这里遗漏了什么。我正在使用最新版本的 Ubuntu。

CSS

#descriptions
{
    position: absolute:
    top: 20px;
    left: 190px;
    height: 500px;
    width: 100px;   
    background-color: blue; 
}

HTML

<div id="descriptions"></div>

这是一个有效的副本:http: //jason-rubenstein.com/testCss/test.html

我知道它可以在某些浏览器中运行,但请确认这不是编码问题,而是错误。

当我更改名称但保持代码相同时,它确实有效。

4

1 回答 1

3

您在属性的行尾使用冒号而不是分号position: absolute;

这是正确的CSS代码:

#descriptions
{
    position: absolute;
    top: 20px;
    left: 190px;
    height: 500px;
    width: 100px;   
    background-color: blue; 
}
于 2012-04-23T08:28:37.727 回答