mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-02-25 23:01:26 -05:00
835 B
835 B
title
| title |
|---|
| CSS Position |
CSS Position
The position property specifies the type of positioning method used for an element. It has 5 keyword values:
.static { position: static; } // default value
.relative { position: relative; }
.sticky { position: sticky; }
.fixed { position: fixed; }
.absolute { position: absolute; }
More Information:
MDN Documentation: MDN
Browser Support: caniuse