Created
March 21, 2014 14:47
-
-
Save milkbread/9687853 to your computer and use it in GitHub Desktop.
Testing grids
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
<!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