当前位置:   article > 正文

element-plus容器布局充满全屏_elementplus el-container+展开全页面

elementplus el-container+展开全页面
  1. <template>
  2. <div class="common-layout">
  3. <el-container>
  4. <el-header>Header</el-header>
  5. <el-container>
  6. <el-aside width="200px">Aside</el-aside>
  7. <el-container>
  8. <el-main>Main</el-main>
  9. <el-footer>Footer</el-footer>
  10. </el-container>
  11. </el-container>
  12. </el-container>
  13. </div>
  14. </template>
  15. <style scope>
  16. .el-header,
  17. .el-footer {
  18. background-color: #B3C0D1;
  19. color: #333;
  20. text-align: center;
  21. line-height: 60px;
  22. }
  23. .el-aside {
  24. background-color: #D3DCE6;
  25. color: #333;
  26. text-align: center;
  27. line-height: 200px;
  28. }
  29. .el-main {
  30. background-color: #E9EEF3;
  31. color: #333;
  32. text-align: center;
  33. line-height: 160px;
  34. }
  35. </style>

以上代码出现

只占半屏

样式加入以下代码全屏展示

  1. .common-layout {
  2. position:absolute;
  3. top:0;
  4. right:0;
  5. bottom:0;
  6. left:0;
  7. }
  8. .el-container {
  9. height: 100%;
  10. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/542549
推荐阅读
相关标签
  

闽ICP备14008679号