# Rows

## Content Rows

Content Rows are composed of cells. Structurally speaking, a column definition constructs a cell definition.

Content Rows extend the entire DikeGrid width. The following output shows some Content Rows:

![Content Rows](https://3888584995-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FpDxfe6pgRLqBLMQgZ0kG%2Fuploads%2FUeMK2q6R0kwiCqB2Jyen%2Fgrid-structure-content-rows.png?alt=media\&token=ea0f4285-7b23-40c8-9e65-352dada5e976)

The highlighted Content Rows have one column definition in the CSS Grid Layout specification. Therefore, the DikeGrid CSS Grid Layout will have three template columns when defining columns in all panels of the DikeGrid.

{% hint style="info" %}
See the [Panels' structure](https://docs.dikesoft.com/fundamentals/grid-structure/panels) for more details.
{% endhint %}

Inside the Content Rows come the actual cell definitions. Content Rows use a nested CSS Grid Layout grid.

![Cell definitions](https://3888584995-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FpDxfe6pgRLqBLMQgZ0kG%2Fuploads%2FGfhMsLdDFXLsvZysZGcb%2Fgrid-structure-cell-definitions.png?alt=media\&token=cb66202d-6d7d-48d8-96fa-707df89446e9)

## Changing the Content Row height

By default, Content Rows have a height of **50 pixels**. However, you can change this height by providing a numeric value to the input property called <mark style="color:orange;">`contentRowHeight`</mark>.

{% code title="grid-structure.component.html" %}

```markup
<dike-grid id="grid-structure"
    [contentRowHeight]="gridProperties.contentRowHeight">
</dike-grid>
```

{% endcode %}

{% hint style="success" %}
You can also change the height of the Content Rows by providing the Injection Token called <mark style="color:blue;">`CONTENT_ROW_HEIGHT`</mark>.
{% endhint %}

Open the [Floating Configuration Panel](https://docs.dikesoft.com/overview#floating-configuration-panel), go to the **Rows** group, and type 100 in the **Content Row Height** textbox.

![Floating Configuration Panel - Rows](https://3888584995-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FpDxfe6pgRLqBLMQgZ0kG%2Fuploads%2FvZFuFLhgPkpXsleW5J9q%2Fgrid-structure-type-content-row-height.png?alt=media\&token=861d95e7-df97-45d2-866e-8133179d441a)

![Changing the Content Rows height](https://3888584995-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FpDxfe6pgRLqBLMQgZ0kG%2Fuploads%2F02dFMjigkhssGDVuCZ52%2Fgrid-structure-change-content-row-height.png?alt=media\&token=860beb26-9ee3-40f1-a9e1-c333e3a0fe2f)
