The position property in CSS is used to set the positioning method for an element. There are several values that can be assigned to the position property, each of which affects how the element is positioned within its containing element or relative to other elements. Here are the most common values.
Static is the default value for the position property in CSS. When an element is positioned statically, it follows the normal flow of the document. In this positioning method, the top, right, bottom, and left properties do not have any effect on the element.
HTML Example :