Описание тега absolute
In CSS, the `absolute` property will cause an element to be positioned relative to its first non-static parent element.
Description
In CSS, the absolute
value of the css-position property will cause an element to be positioned relative to its first non-static parent element.
Example
#example {
position: absolute;
top: 20px; left: 20px;
}