Do you know how to use this attribute ?
Very simple, you just make it part of a Tag with relative attribute
EX:
<div class=“contain”>
<span>Absolute Content</span>
</div>
“contain” will have css code
.contain{
position: relative;
width:500px;
height:500px;
}
Span tag will use absolute attribute, and i will put it in top left
.contain{
position: absolute;
top:0;
left:0;
}