vue竖向滚动背景颜色不能填满 滚动后页面下方出现空白问题解决
一开始只能让无滚动条页面竖向背景颜色填充满,通过:App.vue<template><div id="app"><!-- 路由的出入口,路由的内容将被显示在这里 --><router-view/></div></template><script>export default {name: 'App'}</sc
·
一开始只能让无滚动条页面竖向背景颜色填充满,通过:
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:给元素设置最小高度,当内容少的时候,元素是这个高度,当内容超出时,元素高度会自动适应内容,不会出现内容溢出情况。
更多推荐
已为社区贡献1条内容
所有评论(0)