UNPKG

1.48 kBTypeScriptView Raw
1/**
2 * @name Col
3 * @module ionic
4 * @description
5 *
6 * Columns are cellular components of the [grid](../Grid) system and go inside of a [row](../Row).
7 * They will expand to fill their row. All content within a grid should go inside of a column.
8 *
9 * ## Column attributes
10 *
11 * By default, columns will stretch to fill the entire height of the row.
12 * There are several attributes that can be added to a column to customize this behavior.
13 *
14 * | Property | Description |
15 * |-----------------------|-------------------------------------------------------------------------------------------------------------|
16 * | align-self-start | Adds `align-self: flex-start`. The column will be vertically aligned at the top. |
17 * | align-self-center | Adds `align-self: center`. The column will be vertically aligned in the center. |
18 * | align-self-end | Adds `align-self: flex-end`. The column will be vertically aligned at the bottom. |
19 * | align-self-stretch | Adds `align-self: stretch`. The column will be stretched to take up the entire height of the row. |
20 * | align-self-baseline | Adds `align-self: baseline`. The column will be vertically aligned at its baseline. |
21 *
22 *
23 */
24export declare class Col {
25}