问题现象:
问题代码:
<template><div class&#61;"home"><div class&#61;"home_title">div><div class&#61;"home_body">div><div class&#61;"home_footer">div>div>
template>
.home {background-color: red;width: 100%;height: 100px;margin: 0;
}
.home_title {width: 100%;height: 60px;background-color: #0593d3;margin: 0;
}
解决后效果&#xff1a;
解决CSS代码&#xff1a;
.home,
html,
body {background-color: red;width: 100%;height: 100%;margin: 0;
}
.home_title {width: 100%;height: 60px;background-color: #0593d3;margin: 0;
}