分享⼀下CSS样式重置代码
通过借鉴⽹上⼤⽜们的经验和⾃⼰在⼯作中碰到的⼀些问题,总结出了这些⽐较常⽤的CSS样式重置的代码:@charset "utf-8";
/* 防⽌⽤户⾃定义背景颜⾊对⽹页的影响,添加让⽤户可以⾃定义字体 */
html{
color: #000;
background: #fff;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
font-size: 100%;
}
/* IE6对positon:fixed的单独处理修正IE6滚动抖动的bug */
*html,*html body{
background-image:url(about:blank);/*修正IE6滚动抖动的bug*/
background-attachment: fixed;/*根据⾃⼰实际,⾮必需*/
}
/* 内外边距通常让各个浏览器样式的表现位置不同 */
body,div,dl,dt,dd,ul,li,pre,form,fieldset,select,input,textarea,button,p,blockquote,th,td,img,iframe{
box sizingmargin: 0;
padding: 0;
}
body{
width: 100%;
}
/* 要注意表单元素并不继承⽗级 font 的问题 */
body,button,input,select,textarea{
font: 12px/1.5 "微软雅⿊","Microsoft YaHei","\5b8b\4f53","Tahoma","Arial";
color: #333;
outline: none;
}
input,select,textarea{
font-size: 100%;
}
/* 重置button边框 */
button{
border: none;
}
/* 去掉各Table cell 的边距并让其边重合 */
table{
border-collapse: collapse;
border-spacing: 0;
}
/* IE bug fixed: th 不继承 text-align*/
th{
text-align: inherit;
}
/* 对齐是排版最重要的因素, 别让什么都居中 */
caption,th{
text-align: left;
}
/* 去除默认边框 */
fieldset,img{
border: none;
outline: none;
-moz-outline:none;
}
/
* ie6 7 8(q) bug 显⽰为⾏内表现 */
iframe{
display: block;
}
/* 去掉列表前的标识, li 会继承 */
ol,ul,li{
list-style: none;
}
}
/* 来⾃yahoo, 让标题都⾃定义, 适应多个系统应⽤ */
h1,h2,h3,h4,h5,h6{
font-size: 100%;
font-weight: 500;
margin: 0;
padding: 0;
}
/* 让链接默认不显⽰下划线,在hover状态下显⽰下划线 */
a{
color: #333;
cursor: pointer;
outline: none;
text-decoration: none;
blr:Focus=this.blur());
}
a:hover{
text-decoration: underline;
}
/* 清理浮动 */
.clearfix:before,.clearfix:after{
display: block;
content: " ";
clear: both;
}
.
clearfix{
zoom: 1; /* for ie67*/
}
/* 重设 HTML5 标签, IE 需要在 js 中 createElement(TAG) */
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{    display: block;
}
/* HTML5 媒体⽂件跟 img 保持⼀致 */
audio,canvas,video{
display: inline-block;
*display: inline;
*zoom: 1;
}
address,caption,cite,code,dfn,em,th{
font-style: normal;
font-weight: normal;
}
/*解决盒模型问题css3属性也可⽤来统⼀FORM元素风格*/
.box-sizing{
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。