1. CSS overflow property

    Originally a single property for controlling overflowing content in both horizontal & vertical directions, the `overflow` property is now a shorthand for `overflow-x` & `overflow-y`. The latest version of the specification also introduces the `clip` value that blocks programmatic scrolling.

  2. CSS overflow-anchor (Scroll Anchoring)

    Changes in DOM elements above the visible region of a scrolling box can result in the page moving while the user is in the middle of consuming the content. By default, the value of `overflow-anchor` is `auto`, it can mitigate this jarring user experience by keeping track of the position of an anchor node and adjusting the scroll offset accordingly

  3. CSS overflow: overlay

    The `overlay` value of the `overflow` CSS property is a non-standard value to make scrollbars appear on top of content rather than take up space. This value is deprecated and related functionality being standardized as [the `scrollbar-gutter` property](mdn-css_properties_scrollbar-gutter).

  4. CSS3 Text-overflow

    Append ellipsis when text overflows its containing element

  5. CSS3 Overflow-wrap

    Allows lines to be broken within words if an otherwise unbreakable string is too long to fit. Currently mostly supported using the `word-wrap` property.

  6. css property: overflow

  7. css property: overflow-anchor

  8. css property: overflow-anchor: auto

  9. css property: overflow-anchor: none

  10. css property: overflow-block

  11. css property: overflow-block: auto

  12. css property: overflow-block: clip

  13. css property: overflow-block: hidden

  14. css property: overflow-block: overlay

  15. css property: overflow-block: scroll

  16. css property: overflow-block: visible

  17. css property: overflow-clip-margin

  18. css property: overflow-clip-margin: border-box

  19. css property: overflow-inline

  20. css property: overflow-inline: auto

  21. css property: overflow-inline: clip

  22. css property: overflow-inline: hidden

  23. css property: overflow-inline: overlay

  24. css property: overflow-inline: scroll

  25. css property: overflow-inline: visible

  26. css property: overflow-wrap: anywhere

  27. css property: overflow-wrap: break-word

  28. css property: overflow-wrap: normal

  29. css property: overflow-x

  30. css property: overflow-x: auto

  31. css property: overflow-x: clip

  32. css property: overflow-x: hidden

  33. css property: overflow-x: scroll

  34. css property: overflow-x: visible

  35. css property: overflow-y

  36. css property: overflow-y: auto

  37. css property: overflow-y: clip

  38. css property: overflow-y: hidden

  39. css property: overflow-y: scroll

  40. css property: overflow-y: visible

  41. css property: overflow: auto

  42. css property: overflow: clip

  43. css property: overflow: hidden

  44. css property: overflow: scroll

  45. css property: overflow: visible

  46. types: overflow

  47. types: overflow: clip

  48. types: overflow: overlay