CSSCSS19 min read

CSS Position

Place elements exactly where needed.

David Miller
Nov 19, 2025
19.9k857

Position controls element placement.

## Important values
- static
- relative
- absolute
- fixed

## Example
```css
.box {
  position: relative;
  top: 10px;
}
```

## UI Preview
Box moves slightly down.

## Real world example
Sticky headers and popups.
#CSS#Beginner