UNPKG

@patternfly/patternfly

Version:

Assets, source, tooling, and content for PatternFly 4

44 lines (33 loc) 1.5 kB
--- id: Split section: layouts cssPrefix: pf-l-split --- import './Split.css' ## Examples ### Basic ```html <div class="pf-l-split"> <div class="pf-l-split__item">content</div> <div class="pf-l-split__item pf-m-fill">pf-m-fill</div> <div class="pf-l-split__item">content</div> </div> ``` ### With gutter ```html <div class="pf-l-split pf-m-gutter"> <div class="pf-l-split__item">content</div> <div class="pf-l-split__item pf-m-fill">pf-m-fill</div> <div class="pf-l-split__item">content</div> </div> ``` ## Documentation ### Overview The split layout is designed to position items horizontally, with one item filling the available horizontal space. ### Usage | Class | Applied to | Outcome | | ------------------- | ------------------------------------ | ----------------------------------------------------------------------- | | `.pf-l-split` | `<div>`, `<section>`, or `<article>` | Initiates the split layout. | | `.pf-l-split__item` | `<div>` | Initiates a split item. **Required** | | `.pf-m-gutter` | `.pf-l-split` | Adds space between children by using the globally defined gutter value. | | `.pf-m-fill` | `.pf-l-split__item` | Specifies which item(s) should fill the avaiable horizontal space. |