Created
April 10, 2013 03:55
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .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