在这里插入图片描述
一开始只能让无滚动条页面竖向背景颜色填充满,通过:
App.vue

<template>
  <div id="app">
    <!-- 路由的出入口,路由的内容将被显示在这里 -->
    <router-view/>
  </div>
</template>

<script>
  export default {
    name: 'App'
  }
</script>
<style>
  html,body,#app{
    height: 100%;
  }
</style>

子页面中:

<template style="height:100%"> 
  <div style="height:100%;background-color:#EDEDED;">
  </div>
  </template>

之后在子页面中将height改成了min-height,滚动条拖到下面发现颜色也能填满

<template style="height:100%"> 
  <div style="min-height:100%;background-color:#EDEDED;">

在这里插入图片描述
原因理解:
height:给元素指定高度,一旦元素的内容超出这个高度就会溢出
min-height:给元素设置最小高度,当内容少的时候,元素是这个高度,当内容超出时,元素高度会自动适应内容,不会出现内容溢出情况。

Logo

前往低代码交流专区

更多推荐