vue初始化样式

在App.vue文件中:

#app {
  font-family: 'Avenir', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #2c3e50;
  width: 100%;
  height: 100%;
}
* {
  margin: 0;
  padding: 0;
}
html, body {
  width: 100%;
  height: 100%;
}
ul {
  list-style:none;
}
a {
  text-decoration: none;
} 
img{
  vertical-align:top;
  border:none;
}
 input {
   outline: none;
 }

 

posted @ 2021-03-04 11:03  WillaWilla  阅读(489)  评论(0编辑  收藏  举报