2016-12-30 21:41:28 +08:00
|
|
|
## zh-CN
|
|
|
|
|
2017-02-27 23:39:16 +08:00
|
|
|
拥有顶部导航及侧边栏的页面,多用于展示类网站。
|
2016-12-30 21:41:28 +08:00
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
2017-02-27 23:39:16 +08:00
|
|
|
Both the top navigation and the sidebar, commonly used in documentation site.
|
2016-12-30 21:41:28 +08:00
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
```css
|
2016-12-30 21:41:28 +08:00
|
|
|
#components-layout-demo-top-side .logo {
|
2020-10-26 12:17:07 +08:00
|
|
|
float: left;
|
2016-12-30 21:41:28 +08:00
|
|
|
width: 120px;
|
|
|
|
height: 31px;
|
2020-10-26 12:17:07 +08:00
|
|
|
margin: 16px 24px 16px 0;
|
|
|
|
background: rgba(255, 255, 255, 0.3);
|
|
|
|
}
|
|
|
|
|
|
|
|
.ant-row-rtl #components-layout-demo-top-side .logo {
|
|
|
|
float: right;
|
|
|
|
margin: 16px 0 16px 24px;
|
2016-12-30 21:41:28 +08:00
|
|
|
}
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|