Specification test cases
The test cases below are imported from the Turbo CSS specification.
They have been executed upon loading this page.
Clip overflowing contents.
t1 overflow-hidden
.t1.overflow-hidden {
overflow: hidden;
}
Show overflowing contents.
t1 overflow-visible
.t1.overflow-visible {
overflow: visible;
}
Scroll contents.
t1 overflow-scroll
.t1.overflow-scroll {
overflow: scroll;
}
Scroll contents only when necessary.
t1 overflow-auto
.t1.overflow-auto {
overflow: auto;
}
Clip overflowing contents along the X axis.
t1 overflow-x-hidden
.t1.overflow-x-hidden {
overflow-x: hidden;
}
Clip overflowing contents along the y axis.
t1 overflow-y-hidden
.t1.overflow-y-hidden {
overflow-y: hidden;
}