ant-design/components/layout/demo/top-side-2.md

23 lines
472 B
Markdown
Raw Normal View History

2017-02-27 23:39:16 +08:00
## zh-CN
同样拥有顶部导航及侧边栏,区别是两边未留边距,多用于应用型的网站。
## en-US
Both the top navigation and the sidebar, commonly used in application site.
2019-05-07 14:57:32 +08:00
```css
2017-02-27 23:39:16 +08:00
#components-layout-demo-top-side-2 .logo {
float: left;
2017-02-27 23:39:16 +08:00
width: 120px;
height: 31px;
margin: 16px 24px 16px 0;
background: rgba(255, 255, 255, 0.3);
}
.ant-row-rtl #components-layout-demo-top-side-2 .logo {
float: right;
margin: 16px 0 16px 24px;
2017-02-27 23:39:16 +08:00
}
2019-05-07 14:57:32 +08:00
```