I created a div with an id of "descriptions" and it fails to recognize the position declaration. Is this a bug in Firefox, or am I missing something here. I am using the latest version of Ubuntu.
CSS
#descriptions
{
position: absolute:
top: 20px;
left: 190px;
height: 500px;
width: 100px;
background-color: blue;
}
HTML
<div id="descriptions"></div>
Here is an active copy: http://jason-rubenstein.com/testCss/test.html
I realize it will work in some browsers, but please verify that this is not a coding issue but a bug.
It does work when I change the name but keep the code the same.
position: absolute:(colon instead of a semi-colon) validators are your friend – steveax Apr 23 '12 at 8:28