Skip to content

Instantly share code, notes, and snippets.

@BDavidHolt
Last active August 29, 2015 14:01
Show Gist options
  • Save BDavidHolt/5fe6ced6b180c9122907 to your computer and use it in GitHub Desktop.
Save BDavidHolt/5fe6ced6b180c9122907 to your computer and use it in GitHub Desktop.
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style type="text/css">
table.OuterTable
{
font-family: Arial;
font-size: 11px;
text-align: center;
width: 650px;
border: none;
border-collapse: collapse;
padding: 0 0 0 0;
margin: 0 0 0 0;
}
table.OuterTable td
{
text-align: left;
vertical-align:top;
border: none;
padding: 0 0 0 0;
margin: 0 0 0 0;
padding-bottom: 10px;
}
table.InnerTable
{
font-family: Arial;
font-size: 11px;
text-align: center;
border: none;
border-collapse: collapse;
border-top:1px solid #006599;
border-right:1px solid #006599;
border-bottom:2px solid #006599;
border-left:1px solid #006599;
width: 100%;
}
table.InnerTable td
{
font-family: Arial;
font-size:10px;
white-space: nowrap;
text-align:center;
vertical-align: middle;
padding: 0px 3px 0px 3px;
}
</style>
</head>
<body>
<table class="OuterTable">
<tr>
<td colspan="5">
<table class="InnerTable">
<tr class="ColTitle">
<td>
Header 1
</td>
<td>
Header 2
</td>
<td>
Header 3
</td>
<td>
Header 4
</td>
<td>
Header5
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment