1The types of positioning in CSS are-
21)static: this is the default value.
32)sticky: the element is positioned based on the user's scroll position.
43)fixed: the element is positioned related to the browser window.
54)relative: the element is positioned relative to its normal position.
65)absolute: the element is positioned absolutely to its first positioned parent.
1relative: element at lower position in stack
2absolute: element above the relatively positioned element in stack
3sticky: scrolls with the user scroll movements
4fixed: element fixed with property doesn't disappear while scrolling instead stick to the top
5static: default value