Skip to content

Instantly share code, notes, and snippets.

@milkbread
Created March 21, 2014 14:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save milkbread/9687853 to your computer and use it in GitHub Desktop.
Save milkbread/9687853 to your computer and use it in GitHub Desktop.
Testing grids
<!DOCTYPE html>
<html>
<head>
<title>Testing html grids</title>
<style type="text/css">
.row {
width:300px;
border:2px solid;
display:inline-block;
float:none;
}
.column1_3 {
width:33%;
border:1px dashed;
display:inline-block;
}
.column2_3 {
width:66%;
border:1px dashed;
display:inline-block;
}
</style>
</head>
<body>
<div class="row">
<div class="column1_3">
<h2>Maybe I'm a sidebar</h2>
</div>
<div class="column2_3">
<h2>Maybe I'm the main frame</h2>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment