Remove the margins that come with vue

When creating a new vue project, it will have a margin. How to eliminate the margin? Don't worry~ it's easy 

First find the index.html under public

 Insert the following code to remove the margin~

*{
      margin: 0;
      padding: 0;
    }
    body,html{
      margin: 0;
      padding: 0;
    }

 

 

Guess you like

Origin blog.csdn.net/qq_66061193/article/details/129830216