Sorry, your browser cannot access this site
This page requires browser support (enable) JavaScript
Learn more >

Gray-Ice

个人博客兼个人网站

当你新建一个vue-cli项目时,你可能会发现id为app的盒子左侧和上侧有间隙。解决这个问题的方法如下:打开vue/public/index.html,在head里面加入这样一块代码:

1
2
3
4
5
6
7
<style>
body{
margin: 0;
padding: 0;
}
</style>

然后就可以去掉app盒子与body之间的间隙了。
本篇完。

评论



愿火焰指引你