CSS3 grid-rows プロパティ
完全な CSS3 リファレンス
例
Define a header row of 100 pixels, and add as many additional rows as
necessary, alternating heights of 30 and 60 pixels:
div
{
grid-rows:100px (30px 60px);
} |
|
ブラウザ・サポート

grid-rows プロパティをサポートしているブラウザはありません。
定義と用法
grid-rows property specifies the height of each row in the grid.
チップ: Using grid systems is a great value for print designers. Now the
same concept is applied to online content. The grid-properties add capabilities
for sizing and positioning headings, text, and images in a scalable grid.
| デフォルト値: |
none |
| 継承: |
no |
| バージョン: |
CSS3 |
| JavaScript構文: |
object.style.gridRows="100px (30px 60px)" |
構文
| grid-rows: length|%|none|inherit; |
| 値 |
説明 |
| length |
Refers to the grid of the containing block |
| % |
Refers to the height of the containing block |
| none |
|
| inherit |
|
完全な CSS3 リファレンス
|