835 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			835 B
		
	
	
	
	
	
	
	
title
| title | 
|---|
| CSS Position | 
CSS Position
The position property specifies the type of positioning method used for an element. It has 5 keyword values:
.static         { position: static; } // default value
.relative       { position: relative; }
.sticky         { position: sticky; }
.fixed          { position: fixed; }
.absolute       { position: absolute; }
More Information:
MDN Documentation: MDN
Browser Support: caniuse