出现问题效果
效果图
退出登录上发背景色显示,但是退出登录下方无内容区却不显示背景色
并且,设置了height:100%;但整个body我们只撑开了内容部分
代码
//vue
<template>
<div class="my-container">
...
</div>
</template>
//css
.my-container {
background-color: rgb(246, 246, 247);
height: 100%;
}
原因及解决
原因
在App父组件中使用该路由组件时,会在外层包一层div
// app父组件
<template>
<div>
<router-view></router-view>
</div>
</template>
解决
让.my-container容器脱离文档流,即可解决( 设置position:fixed;)
//css
.my-container {
background-color: rgb(246, 246, 247);
height: 100%;
width: 100%;
position: fixed;
}
效果
退出登录下方等无内容区域背景色就显示出来啦!