Row
in namespace DotVVM.Framework.Controls.Bootstrap4
Represents a row in Bootstrap grid system.
Usage & Scenarios
Renders a Bootstrap row.
Sample 1: Row with Columns
The row can contain one or more Column controls.
<bs:Row>
<bs:Column style="background-color: blue; color: white">
Column 1
</bs:Column>
<bs:Column style="background-color: red; color: white">
Column 2
</bs:Column>
</bs:Row>
Sample 2: Gutters
By default, columns in Bootstrap rows use gutters to preserve space between them. The gutters can be disabled by the UseGutters
property.
<bs:Row UseGutters="false">
<bs:Column style="background-color: blue; color: white">
Column 1
</bs:Column>
<bs:Column style="background-color: red; color: white">
Column 2
</bs:Column>
</bs:Row>
Sample 3: Horizontal Alignment
The JustifyContent
property allows to specify horizontal alignment for all screen sizes.
There are also JustifyContentSM
, JustifyContentMD
, JustifyContentLG
and JustifyContentXL
to specify the behavior for particular screen sizes.
Start
aligns the columns to the left.Center
aligns the columns to the middle.End
aligns the columns to the right.Around
distributes the remaining space equally around every column.Between
distributes the remaining space equally in the gaps between columns.
See the diagram in Bootstrap Grid documentation.
<bs:Row JustifyContentMD="Start" JustifyContentMD="Center">
<bs:Column style="background-color: blue; color: white">
Column 1
</bs:Column>
<bs:Column style="background-color: red; color: white">
Column 2
</bs:Column>
</bs:Row>
Sample 4: Vertical Alignment
The AlignItems
property allows to specify vertical alignment of the columns in the row.
Start
aligns the columns to the top.Center
aligns the columns to the middle.End
aligns the columns to the bottom.
<bs:Row AlignItems="Center">
<bs:Column style="background-color: blue; color: white">
Column 1
</bs:Column>
<bs:Column style="background-color: red; color: white">
Column 2
</bs:Column>
</bs:Row>
Properties
Name | Type | Description | Notes | Default Value | |
---|---|---|---|---|---|
Attributes | Dictionary<String,Object> |
attribute
static value
|
null | ||
ClientIDMode | ClientIDMode | Gets or sets the client ID generation algorithm. |
attribute
static value
|
Static | |
DataContext | Object | Gets or sets a data context for the control and its children. All value and command bindings are evaluated in context of this value. |
attribute
bindable
|
null | |
ID | String | Gets or sets the unique control ID. |
attribute
static value
bindable
|
null | |
IncludeInPage | Boolean | Gets or sets whether the control is included in the DOM of the page. |
attribute
bindable
|
True | |
InnerText | String | Gets or sets the inner text of the HTML element. |
attribute
static value
bindable
|
null | |
Type | RowType | Gets or sets whether this is a normal row or a row inside form. |
attribute
static value
|
Default | |
UseGutters | Boolean | Gets or sets whether the row has gutters. |
attribute
static value
|
True | |
Visible | Boolean | Gets or sets whether the control is visible. |
attribute
bindable
|
True |