CSSCSS18 min read

CSS Position

Place elements exactly where needed.

David Miller
November 20, 2025
8.1k191

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