Static Positioning

statically.

JavaScript 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.
 
To read more above static positioning, visit here
  1. #div-1   
  2. {    
  3.        position:static;    
  4. }   
Browser Versions that support JavaScript Static
1. Google Chrome 49.0
2. IE 13.0
3. Mozilla Firefox 45.0
4. Apple Safari 9.0
5. Opera 36.0
 
Code demo can be found here
 
To read about JavaScript Static, visit here