Header Aside
当前位置:   article > 正文

element的container布局铺满_element-plus container 无法铺满

element-plus container 无法铺满

element的container布局默认不铺满全屏,需要添加样式。

<template>
  <el-container>
      <el-header>Header</el-header>
      <el-container>
        <el-aside style="width: 200px">Aside</el-aside>
        <el-main >Main</el-main>
      </el-container>
    </el-container>
</template>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

需要添加样式:

.el-container{
  weight:100%;
  height: 100%;
}
  • 1
  • 2
  • 3
  • 4

APP.vue中在#app中添加:

#app {
  ...
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

完成后布局会铺满。

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