-
|
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 expectedscrollto in the future).The biggest thing at the moment is that
overflow: hiddenandoverflow: scrolldisable the "automatic minimum size" for Flexbox and CSS Grid items. Also,overflow: scrollenables thescrollbar_sizestyle. 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'soverflowproperty behaves like the web overflow property). Finally, it affects the computedcontent_size(if overflow isvisiblethen overflowing children are included in that nodes size for scroll width/height calculation).