ホーム HTML CSS XML JAVASCRIPT   PHP SQL MORE...   リファレンス 事例集    

CSS3 grid-rows プロパティ

CSS3 Reference 完全な 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);
}


ブラウザ・サポート

Internet Explorer Firefox Opera Google Chrome Safari

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 Reference 完全な CSS3 リファレンス