The overflow-y property specifies whether to clip the content when it overflows at the top and bottom edges.
visible
(default) the content will not be clipped, the content and the descendants may render outside the top and bottom edges.
hidden
the overflow of the content and the descendants will be clipped at the top and bottom edges.
Initial value | visible |
Applies to | all elements |
Inherited | no |
Animatable | no |
overflow
does not contain scroll
and auto
, for scroll
please use <scroll-view>
directly.opacity < 1
will be rendered in an offscreen buffer by default, the offscreen makes the overflow-y: visible
not work correctly, you can add overlap={false}
to disable the offscreen rendering. The property is linked to Android View hasOverlappingRendering
property.LCD tables only load in the browser