SIGN UP MEMBER LOGIN:    
Blog

StaticPositioning

Posted by Abhimanyu Kumar Vatsa Blogs | ASP, JavaScript, CSS Apr 22, 2011
Let's look, how to position the <div> statically.

Static

The default positioning for all elements is position:static, which means the element is not positioned and occurs where it normally would in the document. Normally we would not specify this unless we needed to override a positioning that had been previously set.

#div-1 {
 position:static;
}
share this blog :
post comment