--- title: CSS Position --- ## CSS Position The position property specifies the type of positioning method used for an element. It has 5 keyword values: ```css .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 YouTube: Part1 | Part2