-
I don't understand what is the concrete effect of specifying |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
We will hopefully implement The biggest thing at the moment is that |
Beta Was this translation helpful? Give feedback.
We will hopefully implement
overflow: auto
(which behaves as you expectedscroll
to in the future).The biggest thing at the moment is that
overflow: hidden
andoverflow: scroll
disable the "automatic minimum size" for Flexbox and CSS Grid items. Also,overflow: scroll
enables thescrollbar_size
style. That's a little redundant (you could just set it to 0), but means that our API is 1:1 with the web API (Taffy'soverflow
property behaves like the web overflow property). Finally, it affects the computedcontent_size
(if overflow isvisible
then overflowing children are included in that nodes size for scroll width/height calculation).