Position
The position
property specifies the type of positioning method used for an element (static, relative, absolute, fixed, or sticky). position property can take the following values:
Position: static | absolute | fixed | relative | sticky | initial | inherit;
div {
position:absolute;
}