import Vue from 'vue'
import App from './App'
import BootstrapVue from 'bootstrap-vue'
import 'bootstrap/dist/css/bootstrap.css'
import 'bootstrap-vue/dist/bootstrap-vue.css'
Vue.config.productionTip = false
Vue.use(BootstrapVue);
/* eslint-disable no-new */
new Vue({
el: '#app',
components: { App },
template: '<App/>'
})
<template>
<div id="app">
<webpage></webpage>
</div>
</template>
<script>
import webpage from "./components/webpage"
export default {
name: 'app',
components : {
webpage
}
}
</script>
<style>
</style>
我尝试使用命令v-bind:style='{backgroundColor : color}
通过vue绑定样式更改元素的背景颜色
但是即使我试图在CSS上删除body元素的边距和填充物,它的高度也不全,但是仍然无法正常工作,如您在图片上看到的谢谢
#wrapper{
width: 650px ;
height: auto;
background-color: rgb(198, 241, 200);
margin: 0 auto;
margin-top: 200px;
border-radius: 10px;
}
html,
body {
margin: 0;
padding: 0;
background-color:rgb(250, 28, 65);
}
答案 0 :(得分:0)
将您的元素绑定到样式对象,如下所示:
<div :style="myStyle" id="wrapper">
在您的数据对象中:
data(){
return{
myStyle:{
backgroundColor:"#16a085"
}
...
}
}
您可以检查this,我在不影响Vue逻辑的情况下对CSS规则做了几处更改