+ 3
what is position absolute
@web
2 Antworten
+ 7
Position absolute means that the element's position does not refer to anything else, like position: relative;, which refers to the element's given position in the DOM. Absolute will remove the element from the visual space it was allotted, and depending on the z-index, will be on top of or below the rest of the elements.
+ 4
wow thanks mate