上篇文章说到了用element实现两种常见的页面布局,下面继续实现整体左右结构右边是上中下结构的页面布局。
效果:
HTML代码:
[HTML] 纯文本查看 复制代码 <el-container>
<el-aside width="200px">Aside</el-aside>
<el-container>
<el-header>Header</el-header>
<el-main>Main</el-main>
<el-footer>Footer</el-footer>
</el-container>
</el-container>
css样式:
[CSS] 纯文本查看 复制代码 .el-header, .el-footer {
background-color: #B3C0D1;
color: #333;
text-align: center;
line-height: 60px;
}
.el-aside {
background-color: #D3DCE6;
color: #333;
text-align: center;
line-height: 320px;
}
.el-main {
background-color: #E9EEF3;
color: #333;
text-align: center;
line-height: 160px;
}
|