🧭CSS has five different positioning properties: static, relative, absolute, fixed, and sticky.
📏Static positioning is the default positioning for HTML elements and follows the document flow.
📍Relative positioning allows you to position an element relative to its normal position in the document flow.
📌Absolute positioning removes the element from the document flow and positions it relative to its closest positioned ancestor.
🔒Fixed positioning positions the element relative to the viewport, making it stay in the same position even when scrolling.