/* -------------------------------------------------------------- 
 reset.css此文件规定合理的违约所有的浏览器。 I'm sure we are all familiar with starting a new project, going to our main CSS file and adding a few default styles to the body selector, such as 'margin: 0; padding:0; font-family: Helvetica, Arial, sans-serif;' or something along those lines.我相信我们大家都熟悉的开始一个新的项目，将我们的主要的CSS文件，并增加了一些默认的样式，选择的机构，如'保证金： 0 ;填充： 0 ;字体家庭：瑞士，字体，无-线; '或者按照这些思路。 This is what reset.css does, and more.这是reset.css不，等等。 It resets default styles for spacing, tables, fonts, etc. so you can work from a clean slate.它重置为默认样式间距，表格，字体等，让您可以从一张白纸。 
   
-------------------------------------------------------------- */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, code,
del, dfn, em, img, q, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: inherit;
  font-style: inherit;
  font-family: inherit;
  vertical-align: baseline;
}

body { 
  line-height: 1.5; 
}

/* Tables still need 'cellspacing="0"' in the markup. */
table { border-collapse: separate; border-spacing: 0; }
caption, th, td { text-align: left; font-weight: normal; }
table, td, th { vertical-align: middle; }

/* Remove possible quote marks (") from <q>, <blockquote>. */
blockquote:before, blockquote:after, q:before, q:after { content: ""; }
blockquote, q { quotes: "" ""; }

/* Remove annoying border on linked images. */
a img { border: none; }

