Skip to content

Instantly share code, notes, and snippets.

@mostlyfine
Created April 10, 2013 03:55
Show Gist options
  • Select an option

  • Save mostlyfine/5351678 to your computer and use it in GitHub Desktop.

Select an option

Save mostlyfine/5351678 to your computer and use it in GitHub Desktop.
2行だけのCSSグリッドフレームワーク http://www.vcarrer.com/2010/10/two-lines-css-framework.html
.row {
display:table; /* コンテナ全体にテーブルの表示スタイルを適用 */
width:960px; /* 全体の幅、サイズの変更をはじめ、単位を%, emにも変更可能 */
margin:0 auto /* 左右の中央に配置*/
}
.cell {
display:table-cell; /* 各カラムにテーブルのセルの表示スタイルを適用*/
vertical-align:top; /* 上端(top)揃え */
padding-left:10px /* カラム間の溝の幅 */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment