[RUBY] overflow property [54 days left]
A memorandum because I learned about the overflow property
There are four main values
- The initial value that the element that extends beyond the [visible] box is displayed as it is.
- Elements outside the hidden box are not displayed
- Elements that extend beyond the scroll box are not displayed, but are displayed by scrolling.
- [auto] The processing of the protruding element depends on the browser, basically it is displayed by scrolling
As a supplement
- overflow-x: scroll;
Scroll only on the x-axis (horizontal direction)
- overflow-y: scroll;
Scroll only in the y-axis (vertical direction)
The character string is long horizontally, but I don't want it to wrap + Items do not fit in the box
Can be considered for use in the above cases