base.css 452 B

123456789101112131415161718192021
  1. *{
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. }
  6. html {
  7. -moz-user-select: none; /*火狐*/
  8. -webkit-user-select: none; /*webkit浏览器*/
  9. -ms-user-select: none; /*IE10*/
  10. -khtml-user-select: none; /*早期浏览器*/
  11. user-select: none;
  12. /*overflow: auto; !*避免出现滚动条*!*/
  13. font-size: 12px; /* larger, smaller */
  14. color: white;
  15. }
  16. html, body{
  17. height: 100%;
  18. }
  19. html, body{
  20. overflow: visible;
  21. }