美文网首页
vue修改当前页面body背景色,css修改

vue修改当前页面body背景色,css修改

作者: 可乐_加冰_ | 来源:发表于2021-03-22 16:43 被阅读0次
由于App.vue在最外层包含:<div id="app">  </div>


例如需要修改的页面:a.vue
<template>
 <div class="test">

</div>
</template>

<style scoped>
    .test{
        position: relative或fixed;
        height: 100%;
        width: 100%;
        background: #f6f7fa;
    }

#如果当前页面内容超过一屏幕,可以滑动,就用relative。
#如果页面内容不足一屏幕高度,就用fixed,这会使其填满
</style>

相关文章

网友评论

      本文标题:vue修改当前页面body背景色,css修改

      本文链接:https://www.haomeiwen.com/subject/irzzcltx.html