Skip to content

Instantly share code, notes, and snippets.

@shabunc
Created January 29, 2012 23:01
Show Gist options
  • Select an option

  • Save shabunc/1701220 to your computer and use it in GitHub Desktop.

Select an option

Save shabunc/1701220 to your computer and use it in GitHub Desktop.
Untitled
html {
background: green;
height: 100%;
}
body {
background: red;
margin: 0px;
height: 100%;
}
.layout {
border-collapse: collapse;
}
.layout tr {
height: 100%;
}
.column1 {
background: linen;
width: 100px;
vertical-align: top;
}
.column2 {
background: pink;
width: 500px;
vertical-align: top;
}
<table class="layout">
<tbody>
<tr>
<td class="column1">
FIRST COLUMN
</td>
<td class="column2">
SECOND COLUMN
</td>
</tr>
</tbody>
</table>
{"view":"split-vertical","prefixfree":"1","page":"css"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment