当前位置:首页 » 《关注互联网》 » 正文

vue+ElementPlus框架Container 布局容器不能铺满整个屏幕

27 人参与  2024年04月01日 19:15  分类 : 《关注互联网》  评论

点击全文阅读


<template>  <div class="common-layout">    <el-container>      <el-header>Header</el-header>      <el-container>        <el-aside width="200px">Aside</el-aside>        <el-container>          <el-main>Main</el-main>          <el-footer>Footer</el-footer>        </el-container>      </el-container>    </el-container>  </div></template>

直接使用ElementPlus框架的Container 布局容器,在页面中没有铺满,查看可知,有padding20px,高度也只有一半,因此添加了scc。

在这里插入图片描述

.main {  position: absolute;  top: 0;  right: 0;  bottom: 0;  left: 0;  width: 100%;}

在这里插入图片描述.common-layout { height: 100vh; }


点击全文阅读


本文链接:http://zhangshiyu.com/post/89205.html

<< 上一篇 下一篇 >>

  • 评论(0)
  • 赞助本站

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

关于我们 | 我要投稿 | 免责申明

Copyright © 2020-2022 ZhangShiYu.com Rights Reserved.豫ICP备2022013469号-1