There are CSS classes supplied by Quasar to help you position a DOM element easily:
| Class Name | Description | 
|---|---|
| fullscreen | Fix position covering all window real-estate | 
| fixed | Set positiontofixedwithout specifyingtop,left,rightorbottomproperties | 
| fixed-center | Set position to fixedbut in the middle of window. | 
| absolute | Set positiontoabsolutewithout specifyingtop,left,rightorbottomproperties | 
| absolute-center | Set position to absolutebut in the middle of the container (container needs relative position). | 
| fixed-topabsolute-top | Fixed or absolute position to top of screen | 
| fixed-rightabsolute-right | Fixed or absolute position to the right edge of screen | 
| fixed-bottomabsolute-bottom | Fixed or absolute position to bottom of screen | 
| fixed-leftabsolute-left | Fixed or absolute position to the left edge of screen | 
| fixed-top-leftabsolute-top-left | Fixed or absolute position to top left of screen | 
| fixed-top-rightabsolute-top-right | Fixed or absolute position to top right of screen | 
| fixed-bottom-leftabsolute-bottom-left | Fixed or absolute position to bottom left of screen | 
| fixed-bottom-rightabsolute-bottom-right | Fixed or absolute position to bottom right of screen | 
| fixed-fullabsolute-full | Fixed or absolute position to all screen edges | 
| relative-position | Set position to relative | 
Alignment
| Class Name | Description | 
|---|---|
| float-left | Float to the left | 
| float-right | Float to the right | 
| on-left | Sets a small margin to the right; commonly used for icon elements with other siblings | 
| on-right | Sets a small margin to the left; commonly used for icon elements with other siblings | 
TIP
Instead of using float-left or float-right we recommend that you read on the Quasar Grid System.
Vertical alignment:
| Class Name | Description | 
|---|---|
| vertical-top | Set CSS vertical alignment to top | 
| vertical-middle | Set CSS vertical alignment to middle | 
| vertical-bottom | Set CSS vertical alignment to bottom |