Box sizing on columns. thanks @hellotoby

This commit is contained in:
Nick Pack
2013-04-23 21:04:48 +01:00
parent 2fa65efd5f
commit 5de7739b70
4 changed files with 48 additions and 38 deletions

8
css/skeleton.css vendored
View File

@ -77,7 +77,13 @@ body {
float: left;
display: inline;
margin-left: 10px;
margin-right: 10px; }
margin-right: 10px;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
-khtml-box-sizing: border-box; }
.row {
margin-bottom: 20px; }