# 侧边导航 - order: 2 顶级导航在侧边栏。 --- ````jsx import { Menu, Breadcrumb } from 'antd'; ReactDOM.render(
首页 应用列表 某应用
, document.getElementById('spec-layout-demo-aside')); ```` ````css .ant-layout-aside { background: #f4f4f4; height: 400px; overflow: hidden; position: relative; } .ant-layout-aside .ant-layout-sider { width: 224px; height: 100%; position: absolute; background: #373737; } .ant-layout-aside .ant-layout-header { background: #fff; height: 64px; border-bottom: 1px solid #e9e9e9; } .ant-layout-aside .ant-layout-breadcrumb { margin-top: 7px; margin-bottom: -17px; } .ant-layout-aside .ant-layout-container { margin: 0 16px 16px 240px; } .ant-layout-aside .ant-layout-content { background: #fff; margin-top: 24px; } ````