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;
}