html{color:#000;background:#FFF;}/*设定html文档的前景色和背景色*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,
fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}
/*所有的空白边和内补丁设为0，因为浏览器默认有margin和padding且不尽相同。
我的一般做法是用一个*选择器选择所有的元素*{margin:0;padding:0;}*/
table{border-collapse:collapse;border-spacing:0;}
fieldset,img{border:0;}
input{border:1px solid #fff;}/*我自己添加的，加上这条语句，
所有的input的边框样式都会被重置*/
address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;
font-weight:normal;}/*dfn可标记那些对特殊术语或短语的定义,将默认的斜体或粗体改为一般字体*/
li{list-style:none;}/*去掉列表符号*/
caption,th{text-align:left;}/*默认为居中显示，改为居左*/
h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}/*改成一般的字体样式*/
q:before,q:after{content:'';}/*引用的前后不能有通过before和after伪类添加的内容*/
abbr,acronym {border:0;font-variant:normal;}/*abbr表示它所包含的文本是一个
更长的单词或短语的缩写形式，acronym表示包含的文本是一个首字母的缩写词*/
/* to preserve line-height and selector appearance */
sup {vertical-align:text-top;}
sub {vertical-align:text-bottom;}
input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}
/*to enable resizing for IE*/
input,textarea,select{*font-size:100%;}
/*because legend doesn't inherit in IE */
legend{color:#000;}