You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
New stylesheet property that is probably applied to section elements:
section.column-layout {
layout: columns(2); // For 2 columns
}
The default value for layout is default - which means laying out blocks vertically one after another.
To-Do
New style property layout with possible values default or columns(2) where the argument is the number of columns
Implement LayoutRule that will be asked within LayoutContext.choose_next_bounds about what bounds to use next. The rule will keep track of the current column we're in. The LayoutRules are saved to a stack and applied from top to bottom. At the very bottom we find the default rule that will just push a new page - as is the current behavior.
The text was updated successfully, but these errors were encountered:
New stylesheet property that is probably applied to
section
elements:The default value for layout is
default
- which means laying out blocks vertically one after another.To-Do
layout
with possible valuesdefault
orcolumns(2)
where the argument is the number of columnsLayoutRule
that will be asked withinLayoutContext.choose_next_bounds
about what bounds to use next. The rule will keep track of the current column we're in. TheLayoutRules
are saved to a stack and applied from top to bottom. At the very bottom we find the default rule that will just push a new page - as is the current behavior.The text was updated successfully, but these errors were encountered: