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

2021-03-22  本文已影响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>

上一篇 下一篇

猜你喜欢

热点阅读