Absolute position for an element


Hello everybody, welcome to our website where you will find everything for free.

This is thirty-fourth video tutorial of CSS series which explains you Absolute position in CSS.

What is absolute position?
It is nothing but positioning an element or content to a specified location.

For example; if I want to place a button 80px to the left, I will use the following code in CSS style tag:

Position: absolute;
Left: 80px;

Means, our content which is applied this above code, is set/ positioned at 80px from left side and absolutely.

For better understanding, just see the video.