base.css 1005 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*(1)清除默认样式*/
  2. html, body, ul, li, ol, dl, dd, dt, p, h1, h2, h3, h4, h5, h6, form, fieldset, legend, img,input{ margin:0; padding:0; }
  3. fieldset, img,input,button { border:0 none; padding:0;margin:0;outline-style:none; } /*去掉input等聚焦时的蓝色边框*/
  4. ul,li,ol{ list-style:none; }
  5. select, input { vertical-align:middle;}
  6. textarea { resize:none; } /*防止拖动*/
  7. img {border:0; vertical-align:middle; }
  8. /* 去掉图片低测默认的3像素空白缝隙*/
  9. table { border-collapse:collapse; }
  10. a {text-decoration:none;color: #000000;}
  11. bady{
  12. height: 100%;
  13. width: 100%;
  14. }
  15. /*固定盒子*/
  16. /**{
  17. box-sizing: border-box;
  18. }*/
  19. .clearfix:before,.clearfix:after { /*清楚浮动*/
  20. content:"";
  21. display:table;
  22. }
  23. .clearfix:after{clear:both;}
  24. .clearfix{
  25. *zoom:1;/*IE/7/6*/
  26. }
  27. /*公共类*/
  28. .container { /*内容、版心 提取 */
  29. width: 1190px;
  30. /*100%是继承父元素的高或者宽*/
  31. height: 100%;
  32. /*background-color:yellow;*/
  33. margin:0 auto;
  34. }