Difference between revisions of "Team:SSTi-SZGD/css/base"

(Created page with "/*所有的标签和伪类 before after*/ *, ::before, ::after { padding: 0; margin: 0; 移动端特殊的设置: -webkit-tap-highlight-color: transparent;...")
 
Line 1: Line 1:
 
/*所有的标签和伪类  before after*/
 
/*所有的标签和伪类  before after*/
 
*, ::before, ::after {
 
*, ::before, ::after {
     padding: 0;
+
     padding: 0 !important;
     margin: 0;
+
     margin: 0 !important;
 
     /*移动端特殊的设置*/
 
     /*移动端特殊的设置*/
 
     -webkit-tap-highlight-color: transparent;  /*清除点击高亮效果*/
 
     -webkit-tap-highlight-color: transparent;  /*清除点击高亮效果*/
Line 25: Line 25:
 
}
 
}
  
html{ font-size: 62.5%; font-family: "MicroSoft YaHei", "sans-serif"; /*"sans-serif"是设备默认的字体*/ margin: auto; background: white;}
+
html{ font-size: 62.5% !important; font-family: "MicroSoft YaHei", "sans-serif" !important; /*"sans-serif"是设备默认的字体*/ margin: auto; background: white;}
  
 
/*根据项目需求设定*/
 
/*根据项目需求设定*/
 
body {
 
body {
     margin: 0;
+
     margin: 0 !important;
     padding: 0;
+
     padding: 0 !important;
 
}
 
}
  
Line 38: Line 38:
  
 
a {
 
a {
     text-decoration: none;
+
     text-decoration: none !important;
 
}
 
}
 +
 +
a{ text-decoration: none !important;}
  
 
input, textarea {
 
input, textarea {

Revision as of 09:35, 22 July 2017

/*所有的标签和伪类 before after*/

  • , ::before, ::after {
   padding: 0 !important;
   margin: 0 !important;
   /*移动端特殊的设置*/
   -webkit-tap-highlight-color: transparent;  /*清除点击高亮效果*/
   box-sizing: border-box; /*设置所有的盒子的宽度以边框开始计算*/
   -webkit-box-sizing: border-box;/*兼容 webkit 浏览器内核厂商*/

}

/*去除鼠标选中*/ .noselect {

   -webkit-touch-callout: none;
   -webkit-user-select: none;
   -khtml-user-select: none;
   -moz-user-select: none;
   -ms-user-select: none;
   user-select: none;

}

/*各浏览器显示不同,去掉边框等默认样式*/ fieldset, img, input, button {

   border: none;
   outline-style: none;

}

html{ font-size: 62.5% !important; font-family: "MicroSoft YaHei", "sans-serif" !important; /*"sans-serif"是设备默认的字体*/ margin: auto; background: white;}

/*根据项目需求设定*/ body {

   margin: 0 !important;
   padding: 0 !important;

}

ul, ol {

   list-style: none;

}

a {

   text-decoration: none !important;

}

a{ text-decoration: none !important;}

input, textarea {

   border: none;
   outline: none;
   resize: none; /*防止拖动 影响布局*/
   /*特殊的属性定义 清除浏览器给input自带的样式*/
   -webkit-appearance: none; /*将组件默认的样式设置为空*/

}

img {

   vertical-align: middle;
   display: block; /*清除img默认间隔*/

}

table {

   border-collapse: collapse;

}

/*清除浮动*/ .clearfix:before, .clearfix:after {

   content: "";
   display: table;

} .clearfix:after {

   clear: both;

} .clearfix {

   *zoom: 1; /*IE/7/6*/

}

/*废物利用*/ s, i, em {

   font-style: normal;
   text-decoration: none;

}