Fillers¶
 
Renders many draw-objs in specified direction. Unline series, filler try to fill specified space with draw-objs.
Properties¶
- 
property display:x-filler | y-filler | z-filler;
- Required - YES - Type x-filler
- filler on X (width) axis 
- Type y-filler
- filler on Y (depth) axis 
- Type z-filler
- filler on Z (height) axis 
   - x-series¶   - y-series¶   - z-series¶ 
- 
property body:SELECTOR-TO-DRAW-OBJ;
- Link to draw-obj to fill the specified space. 
- 
property padding:INTEGER;
- Default - 0- Minimal padding between objects. 
- 
property align:start | end | center | stretch;
- Default - start- Align of objects in specified axis. - For this property is neccessary to set width/depth/height (depends on type)   - align: start¶   - align: end¶   - align: center¶   - align: stretch¶ 
- 
property (x-filler) justify:start | end | center | random;
- 
property (y-filler) justify:start | end | center | random;
- 
property (z-filler) justify:JUSTIFY-X, JUSTIFY-Y | center | random;
- Default - start- Align of objects for the rest axis. - for x-filler: align of Y (depth) axis 
- for y-filler: align of X (width) axis 
- for z-filler: align of Y and X axis (with two arguments) 
   - justify: start¶   - justify: end¶   - justify: center¶   - justify: random¶   - justify: start, center¶   - justify: end, center¶ 
Example¶
row {
    display: x-filler;
    width: 300;
    depth: 100;
    align: stretch;
    body: house.red;
}
You can try on https://pixelopolis.herokuapp.com/examples/Containers/Series