docs:Page页面 自定义 CSS 关于 myClass的说明,位置调整 (#5238)

This commit is contained in:
Byran 2022-08-25 19:37:39 +08:00 committed by GitHub
parent 522b7de8d7
commit 4154368e98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -212,6 +212,16 @@ Page 默认将页面分为几个区域,分别是**内容区(`body`**、**
}
```
上面的配置会自动创建一个 `<style>` 标签,其中内容就是:
```css
.myClass {
color: blue;
}
```
配置写法和编写普通 css 的体验是一致的,可以使用任意 css 选择符及属性。
## aside 可调整宽度
通过配置 `asideResizor`,可以让侧边栏支持动态调整宽度,同时可以通过 `asideMinWidth`、`asideMaxWidth` 设置 aside 最大最小宽度。
@ -237,16 +247,6 @@ Page 默认将页面分为几个区域,分别是**内容区(`body`**、**
}
```
上面的配置会自动创建一个 `<style>` 标签,其中内容就是:
```css
.myClass {
color: blue;
}
```
配置写法和编写普通 css 的体验是一致的,可以使用任意 css 选择符及属性。
## aside 位置固定
通过配置 `asideSticky` 来开关,默认是开启状态。