CSS定位类

Quasar提供的CSS类可以帮助您轻松定位DOM元素:

类名 说明
fullscreen 全屏
fixed position设置为fixed而不指定topleftrightbottom属性
fixed-center position设置为fixed,但在窗口中间。
absolute position设置为absolute而不指定topleftrightbottom属性
absolute-center position设置为absolute,但在容器中间(容器需要相对位置)。
fixed-topabsolute-top 固定或绝对定位在屏幕顶部
fixed-rightabsolute-right 固定或绝对定位在屏幕右边缘
fixed-bottomabsolute-bottom 固定或绝对定位在屏幕底部
fixed-leftabsolute-left 固定或绝对定位在屏幕左边缘
fixed-top-leftabsolute-top-left 固定或绝对定位在屏幕左上角
fixed-top-rightabsolute-top-right 固定或绝对定位在屏幕右上角
fixed-bottom-left, absolute-bottom-left 固定或绝对定位在屏幕左下角
fixed-bottom-right, absolute-bottom-right 固定或绝对定位在屏幕右下角
relative-position position设置为relative

对齐

类名 说明
float-left 浮动到左侧
float-right 浮动到右侧
on-left 在右侧设置一个小边距;通常用于有兄弟元素的图标元素
on-right 在左侧设置一个小边距;通常用于有兄弟元素的图标元素

垂直对齐:

类名 说明
vertical-top 将CSS垂直对齐设置为top
vertical-middle 将CSS垂直对齐设置为middle
vertical-bottom 将CSS垂直对齐设置为bottom