2017-03-05 20:02:53 +08:00
|
|
|
## zh-CN
|
|
|
|
|
|
|
|
一般用于固定顶部导航,方便页面切换。
|
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
Fixed Header is generally used to fix the top navigation to facilitate page switching.
|
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
```css
|
2017-03-05 20:02:53 +08:00
|
|
|
#components-layout-demo-fixed .logo {
|
2021-01-30 19:39:02 +08:00
|
|
|
float: left;
|
2017-03-05 20:02:53 +08:00
|
|
|
width: 120px;
|
|
|
|
height: 31px;
|
|
|
|
margin: 16px 24px 16px 0;
|
2021-01-30 19:39:02 +08:00
|
|
|
background: rgba(255, 255, 255, 0.2);
|
2017-03-05 20:02:53 +08:00
|
|
|
}
|
2022-04-22 15:00:18 +08:00
|
|
|
#components-layout-demo-fixed .site-layout .site-layout-background {
|
2020-01-02 17:54:11 +08:00
|
|
|
background: #fff;
|
|
|
|
}
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|
2020-01-02 17:54:11 +08:00
|
|
|
|
|
|
|
<style>
|
|
|
|
[data-theme="dark"] .site-layout .site-layout-background {
|
|
|
|
background: #141414;
|
|
|
|
}
|
|
|
|
</style>
|