You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_box-sizing.css 362B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*
  2. BOX SIZING
  3. */
  4. html,
  5. body,
  6. div,
  7. article,
  8. section,
  9. main,
  10. footer,
  11. header,
  12. form,
  13. fieldset,
  14. legend,
  15. pre,
  16. code,
  17. a,
  18. h1,h2,h3,h4,h5,h6,
  19. p,
  20. ul,
  21. ol,
  22. li,
  23. dl,
  24. dt,
  25. dd,
  26. textarea,
  27. table,
  28. td,
  29. th,
  30. tr,
  31. input[type="email"],
  32. input[type="number"],
  33. input[type="password"],
  34. input[type="tel"],
  35. input[type="text"],
  36. input[type="url"],
  37. .border-box {
  38. box-sizing: border-box;
  39. }