CSS COURSE • LESSON

📍 CSS Position

Master CSS and create modern responsive websites with EDUHUB CODE HUB.

CSS Position

The position property specifies how an element is positioned.

Static


div {
 position:static;
}

Relative


div {
 position:relative;
 left:20px;
}

Absolute


.box {
 position:absolute;
 top:0;
 right:0;
}

Fixed


.menu {

position:fixed;

top:0;

}

Sticky


header {

position:sticky;

top:0;

}