80 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Markdown
		
	
	
			
		
		
	
	
			80 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Markdown
		
	
	
| <cn>
 | |
| #### ๅบๆฌ็ปๆ
 | |
| ๅ
ธๅ็้กต้ขๅธๅฑใ
 | |
| </cn>
 | |
| 
 | |
| <us>
 | |
| #### Basic Structure
 | |
| Classic page layouts.
 | |
| </us>
 | |
| 
 | |
| ```html
 | |
| <template>
 | |
|   <div id="components-layout-demo-basic">
 | |
|     <a-layout>
 | |
|       <a-layout-header>Header</a-layout-header>
 | |
|       <a-layout-content>Content</a-layout-content>
 | |
|       <a-layout-footer>Footer</a-layout-footer>
 | |
|     </a-layout>
 | |
| 
 | |
|     <a-layout>
 | |
|       <a-layout-header>Header</a-layout-header>
 | |
|       <a-layout>
 | |
|         <a-layout-sider>Sider</a-layout-sider>
 | |
|         <a-layout-content>Content</a-layout-content>
 | |
|       </a-layout>
 | |
|       <a-layout-footer>Footer</a-layout-footer>
 | |
|     </a-layout>
 | |
| 
 | |
|     <a-layout>
 | |
|       <a-layout-header>Header</a-layout-header>
 | |
|       <a-layout>
 | |
|         <a-layout-content>Content</a-layout-content>
 | |
|         <a-layout-sider>Sider</a-layout-sider>
 | |
|       </a-layout>
 | |
|       <a-layout-footer>Footer</a-layout-footer>
 | |
|     </a-layout>
 | |
| 
 | |
|     <a-layout>
 | |
|       <a-layout-sider>Sider</a-layout-sider>
 | |
|       <a-layout>
 | |
|         <a-layout-header>Header</a-layout-header>
 | |
|         <a-layout-content>Content</a-layout-content>
 | |
|         <a-layout-footer>Footer</a-layout-footer>
 | |
|       </a-layout>
 | |
|     </a-layout>
 | |
|   </div>
 | |
| </template>
 | |
| 
 | |
| <style>
 | |
| #components-layout-demo-basic {
 | |
|   text-align: center;
 | |
| }
 | |
| #components-layout-demo-basic .ant-layout-header,
 | |
| #components-layout-demo-basic .ant-layout-footer {
 | |
|   background: #7dbcea;
 | |
|   color: #fff;
 | |
| }
 | |
| #components-layout-demo-basic .ant-layout-footer {
 | |
|   line-height: 1.5;
 | |
| }
 | |
| #components-layout-demo-basic .ant-layout-sider {
 | |
|   background: #3ba0e9;
 | |
|   color: #fff;
 | |
|   line-height: 120px;
 | |
| }
 | |
| #components-layout-demo-basic .ant-layout-content {
 | |
|   background: rgba(16, 142, 233, 1);
 | |
|   color: #fff;
 | |
|   min-height: 120px;
 | |
|   line-height: 120px;
 | |
| }
 | |
| #components-layout-demo-basic > .ant-layout {
 | |
|   margin-bottom: 48px;
 | |
| }
 | |
| #components-layout-demo-basic > .ant-layout:last-child {
 | |
|   margin: 0;
 | |
| }
 | |
| </style>
 | |
| ```
 |