vue面试问到的题及解决办法

首页-样式重置与公用

准备网站所需的重置样式代码,以及一些公用样式代码。 导入方式 html导入 vue main.js全局导入

// 重置样式
* {
   
  box-sizing: border-box;
 }
 
 html {
   
   height: 100%;
   font-size: 14px;
 }
 body {
   
   height: 100%;
   color: #333;
   min-width: 1240px;
   font: 1em/1.4 'Microsoft Yahei', 'PingFang SC', 'Avenir', 'Segoe UI', 'Hiragino Sans GB', 'STHeiti', 'Microsoft Sans Serif', 'WenQuanYi Micro Hei', sans-serif
 }
 
 ul,
 h1,
 h3,
 h4,
 p,
 dl,
 dd {
   
   padding: 0;
   margin: 0;
 }
 
 a {
   
   text-decoration: none;
   color: #333;
   outline: none;
 }
 
 i {
   
   font-style: normal;
 }
 
 input[type="text"],
 input[type="search"],
 input[type="password"], 
 input

你可能感兴趣的:(vue,vue.js,echarts,前端)