common.css 366 B

12345678910111213141516171819202122232425262728
  1. html, body{
  2. background: #F7F8FA;
  3. }
  4. *{
  5. margin: 0;
  6. padding: 0;
  7. }
  8. ul,li{
  9. list-style: none;
  10. }
  11. .clearfix {
  12. zoom: 1
  13. }
  14. .clearfix:after {
  15. display: block;
  16. clear: both;
  17. overflow: hidden;
  18. width: 0;
  19. content: '';
  20. }
  21. .ellipsis{
  22. overflow: hidden;
  23. text-overflow:ellipsis;
  24. white-space: nowrap;
  25. }
  26. table,tr,td{
  27. list-style: none;
  28. }