1. 程式人生 > >vue給單獨頁面新增背景顏色

vue給單獨頁面新增背景顏色

vue 單獨設定背景顏色的方法是在template下的子div上新增樣式

<template>
    <div></div>
</template>

給style新增一個scoped表示當前樣式只給當前頁面設定。
將這個div屬性設為:fixed,

例如:

<style scoped>
    .htmlBox{
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0px;
        background-color
: #ffffff
; }
</style>

即可改變當前頁面的背景顏色