Skip to content

Instantly share code, notes, and snippets.

@stephenh
Created February 2, 2011 22:44
Show Gist options
  • Save stephenh/808621 to your computer and use it in GitHub Desktop.
Save stephenh/808621 to your computer and use it in GitHub Desktop.
<html>
<body>
Tables (desired):
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td>
<div>AAA</div>
<div>AAA</div>
<div>AAA</div>
<div>AAA</div>
<div>AAA</div>
</td>
<td valign="top">
<div style="margin-top: 10px;">BBB</div>
</td>
</tr>
</table>
<hr/>
table-cell:
<div style="display: table-cell;">
<div>AAA</div>
<div>AAA</div>
<div>AAA</div>
<div>AAA</div>
<div>AAA</div>
</div>
<div style="display: table-cell;">
<div style="margin-top: 10px;">BBB</div>
</div>
<hr/>
inline-block:
<div>
<div style="display: inline-block;">
<div>AAA</div>
<div>AAA</div>
<div>AAA</div>
<div>AAA</div>
<div>AAA</div>
</div>
<div style="display: inline-block; vertical-align: top;">
<div style="margin-top: 10px;">BBB</div>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment