.body-bg { position: absolute; width: 100%; height: 100%; top: 0; left: 0; overflow-y: auto; background-color: #000; }
示例:css
<template> <div class="body-bg"> //其它內容 </div> </template>
css:spa
<style scoped> .body-bg{ position: absolute; height: 100%; width: 100%; top:0; left: 0; overflow-y: auto; background-color: #fff;//背景色爲白色 } </style>
這樣就可使當前頁面全屏白色了。code