--- order: 2 title: zh-CN: 顶部-侧边布局-通栏 en-US: Header Sider 2 --- ## zh-CN 同样拥有顶部导航及侧边栏,区别是两边未留边距,多用于应用型的网站。 ## en-US Both the top navigation and the sidebar, commonly used in application site. ```tsx import { LaptopOutlined, NotificationOutlined, UserOutlined } from '@ant-design/icons'; import type { MenuProps } from 'antd'; import { Breadcrumb, Layout, Menu } from 'antd'; import React from 'react'; const { Header, Content, Sider } = Layout; const items1: MenuProps['items'] = ['1', '2', '3'].map(key => ({ key, label: `nav ${key}`, })); const items2: MenuProps['items'] = [UserOutlined, LaptopOutlined, NotificationOutlined].map( (icon, index) => { const key = String(index + 1); return { key: `sub${key}`, icon: React.createElement(icon), label: `subnav ${key}`, children: new Array(4).fill(null).map((_, j) => { const subKey = index * 4 + j + 1; return { key: subKey, label: `option${subKey}`, }; }), }; }, ); const App: React.FC = () => (
Home List App Content ); export default App; ``` ```css #components-layout-demo-top-side-2 .logo { float: left; 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; } .site-layout-background { background: #fff; } ```