QuirksMode.css 761 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /* 15.3.3 Flow content
  2. * https://html.spec.whatwg.org/multipage/rendering.html#flow-content-3
  3. */
  4. form {
  5. margin-bottom: 1em;
  6. }
  7. /* 15.3.8 Tables
  8. * https://html.spec.whatwg.org/multipage/rendering.html#tables-2
  9. */
  10. table {
  11. font-weight: initial;
  12. font-style: initial;
  13. font-variant: initial;
  14. font-size: initial;
  15. line-height: initial;
  16. white-space: initial;
  17. text-align: initial;
  18. }
  19. /* 15.3.10 Form controls
  20. * https://html.spec.whatwg.org/multipage/rendering.html#form-controls
  21. */
  22. input:not([type=image i]), textarea {
  23. box-sizing: border-box;
  24. }
  25. /* 15.4.2 Images
  26. * https://html.spec.whatwg.org/multipage/rendering.html#images-3
  27. */
  28. img[align=left i] {
  29. margin-right: 3px;
  30. }
  31. img[align=right i] {
  32. margin-left: 3px;
  33. }