我们将在下面的部分处理 Quasar 提供的排版。
标题
text-h1
h1
标题 1
text-h2
h2
标题 2
text-h3
h3
标题 3
text-h4
h4
标题 4
text-h5
h5
标题 5
text-h6
h6
标题 6
text-subtitle1
副标题 1
text-subtitle2
副标题 2
text-body1
正文 1. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quos blanditiis tenetur unde suscipit, quam beatae rerum inventore consectetur, neque doloribus, cupiditate numquam dignissimos laborum fugiat deleniti? Eum quasi quidem quibusdam.
text-body2
正文 2. Lorem ipsum dolor sit amet consectetur adipisicing elit. Cupiditate aliquid ad quas sunt voluptatum officia dolorum cumque, possimus nihil molestias sapiente necessitatibus dolor saepe inventore, soluta id accusantium voluptas beatae.
text-caption
text-overline
顶线
字体粗细
text-weight-thin
Lorem Ipsum 仅仅是印刷和排版行业的虚拟文本。
text-weight-light
Lorem Ipsum 仅仅是印刷和排版行业的虚拟文本。
text-weight-regular
Lorem Ipsum 仅仅是印刷和排版行业的虚拟文本。
text-weight-medium
Lorem Ipsum 仅仅是印刷和排版行业的虚拟文本。
text-weight-bold
Lorem Ipsum 仅仅是印刷和排版行业的虚拟文本。
text-weight-bolder
Lorem Ipsum 仅仅是印刷和排版行业的虚拟文本。
CSS 辅助类
类名 | 描述 |
---|---|
text-right | 将文本对齐到右侧 |
text-left | 将文本对齐到左侧 |
text-center | 将文本对齐到中间 |
text-justify | 文本将被两端对齐 |
text-bold | 文本将为粗体 |
text-italic | 文本将为斜体 |
text-no-wrap | 不可换行文本(应用 white-space: nowrap ) |
text-strike | 应用 text-decoration: line-through |
text-uppercase | 将文本转换为大写 |
text-lowercase | 将文本转换为小写 |
text-capitalize | 将文本的第一个字母大写 |
默认字体
嵌入的默认网络字体是 Roboto。**但这不是必需的**。您可以使用任何您喜欢的字体。
Roboto 带有 6 种不同的字体粗细供您使用:100、300、400、500、700、900。
如果要删除 Roboto 字体,默认情况下它会嵌入在这里
extras: [
'roboto-font'
]
content_paste
添加自定义字体
还可以包含其他字体以便在应用程序中使用它们。以下是一种方法
- 将您的新网络字体
[customfont].woff
(或任何扩展名;建议使用woff
以确保所有浏览器的兼容性)复制到您选择的目录中,例如:./src/css/fonts/[customfont.woff]
- 在
./src/css/app.{css|sass|scss|styl}
中声明您的字体(或在您认为合适的位置,但请正确更新到网络字体文件的相对路径)
@font-face {
font-family: customfont;
src: url(./fonts/customfont.woff);
}
// declare a class which applies it
.my-font {
font-family: 'customfont';
}
content_paste
- 然后在需要的地方使用该类。