25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

77 lines
2.2 KiB

  1. /*
  2. KISSY CSS Reset
  3. 理念:清除和重置是紧密不可分的
  4. 特色:1.适应中文 2.基于最新主流浏览器
  5. 维护:玉伯(lifesinger@gmail.com), 正淳(ragecarrier@gmail.com)
  6. /* 清除内外边距 */
  7. * {
  8. font-family: "黑体";
  9. }
  10. body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, /* structural elements 结构元素 */
  11. dl, dt, dd, ul, ol, li, /* list elements 列表元素 */
  12. pre, /* text formatting elements 文本格式元素 */
  13. fieldset, lengend, button, input, textarea, /* form elements 表单元素 */
  14. th, td { /* table elements 表格元素 */
  15. margin: 0;
  16. padding: 0;
  17. }
  18. /* 设置默认字体 */
  19. body,
  20. button, input, select, textarea { /* for ie */
  21. /*font: 12px/1 Tahoma, Helvetica, Arial, "宋体", sans-serif;*/
  22. font: 12px/1 Tahoma, Helvetica, Arial, "\5b8b\4f53", sans-serif; /* 用 ascii 字符表示,使得在任何编码下都无问题 */
  23. }
  24. h1 { font-size: 18px; /* 18px / 12px = 1.5 */ }
  25. h2 { font-size: 16px; }
  26. h3 { font-size: 14px; }
  27. h4, h5, h6 { font-size: 100%; }
  28. address, cite, dfn, em, var { font-style: normal; } /* 将斜体扶正 */
  29. code, kbd, pre, samp, tt { font-family: "Courier New", Courier, monospace; } /* 统一等宽字体 */
  30. small { font-size: 12px; } /* 小于 12px 的中文很难阅读,让 small 正常化 */
  31. /* 重置列表元素 */
  32. ul, ol { list-style: none; }
  33. /* 重置文本格式元素 */
  34. a { text-decoration: none; }
  35. a:hover { text-decoration: underline; }
  36. abbr[title], acronym[title] { /* 注:1.ie6 不支持 abbr; 2.这里用了属性选择符,ie6 下无效果 */
  37. border-bottom: 1px dotted;
  38. cursor: help;
  39. }
  40. q:before, q:after { content: ''; }
  41. /* 重置表单元素 */
  42. legend { color: #000; } /* for ie6 */
  43. fieldset, img { border: none; } /* img 搭车:让链接里的 img 无边框 */
  44. /* 注:optgroup 无法扶正 */
  45. button, input, select, textarea {
  46. font-size: 100%; /* 使得表单元素在 ie 下能继承字体大小 */
  47. }
  48. /* 重置表格元素 */
  49. table {
  50. border-collapse: collapse;
  51. border-spacing: 0;
  52. }
  53. /* 重置 hr */
  54. hr {
  55. border: none;
  56. height: 1px;
  57. }
  58. /* 让非ie浏览器默认也显示垂直滚动条,防止因滚动条引起的闪烁 */
  59. html { overflow-y: scroll; }*/
  60. body{
  61. font-size: 62.5%;
  62. }