CSS 定位工具类

您可以轻松的时候 Quasar 提供的 CSS 工具类帮您实现元素定位。

CSS 类名描述
fullscreen固定位置并且覆盖全屏幕
fixed设置 positionfixed
fixed-center设置 positionfixed并且将元素相对浏览器居中
absolute设置 positionabsolute
absolute-center设置 positionabsolute并居中(需要父元素设置 position 为 relative)
fixed-top, absolute-top固定/绝对定位到屏幕顶部
fixed-right, absolute-right固定/绝对定位到屏幕右边
fixed-bottom, absolute-bottom固定/绝对定位到屏幕底部
fixed-left, absolute-left固定/绝对定位到屏幕左边
fixed-top-left, absolute-top-left固定/绝对定位到屏幕左上角
fixed-top-right, absolute-top-right固定/绝对定位到屏幕右上角
fixed-bottom-left, absolute-bottom-left固定/绝对定位到屏幕左下角
fixed-bottom-right, absolute-bottom-right固定/绝对定位到屏幕右下角
fixed-full, absolute-full固定/绝对定位到屏幕的所有边 Fixed or absolute position to all screen edges
relative-position设置 positionrelative

对齐

CSS 类名描述
float-left浮动到左边
float-right浮动到右边
on-left在右边设置一个小尺寸的外边距,通常会用在 icon 组件上
on-right在左边设置一个小尺寸的外边距,通常会用在 icon 组件上

TIP

相对于使用float-leftfloat-right来实现布局或对齐,更推荐您使用 Quasar 提供的网格系统

垂直方向对齐:

CSS 类名描述
vertical-top设置 vertical-aligntop
vertical-middle设置 vertical-alignmiddle
vertical-bottom设置 vertical-alignbottom