.container

.sticky{
	position:sticky;
	background-color:pink;
	top:0;
	z-index:3;
}

.static{
	position:static;
	background-color: green;
}

.relative{
	
	position:relative;
	right:5em;
	background-color: yellow;
	z-index:1;
}


.absolute-parent{
	position:relative;
	
}

.absolute{
	position:absolute;
	top:0;
	right:0;
	background-color: orange;
	z-index:2;
	
}

.fixed{
	position:fixed;
	top:0;
	right:0;
	width:30%;
	background-color: blue;
	z-index:4;
}