# 顶部导航 - order: 0 一二级导航都在顶部。 --- ````jsx import { Menu, Breadcrumb } from 'antd'; ReactDOM.render(
首页 应用列表 某应用
, document.getElementById('spec-layout-demo-top')); ```` ````css .ant-layout-top { background: #f4f4f4; height: 400px; overflow: hidden; } .ant-layout-top .ant-layout-header { background: #373737; height: 64px; } .ant-layout-top .ant-layout-subheader { height: 48px; border-bottom: 1px solid #e9e9e9; background: #fff; } .ant-layout-top .ant-layout-breadcrumb { margin-top: 7px; margin-bottom: -17px; } .ant-layout-top .ant-layout-main { padding: 0 50px; } .ant-layout-top .ant-layout-container { background: #fff; margin-top: 24px; } ````