Skip to content

Instantly share code, notes, and snippets.

@SpencerCooley
Created December 8, 2011 06:26
Show Gist options
  • Save SpencerCooley/1446281 to your computer and use it in GitHub Desktop.
Save SpencerCooley/1446281 to your computer and use it in GitHub Desktop.
<!doctype html>
<html>
<head>
<style>
@media print{
@page {size: landscape}
#wrap_invoice{
position:relative;
top:0in;
left:0in;
border:dashed 1px;
height:1.75in;
width:4.65in;
}
body{font-size:2em;}
table{
padding:10px;
position:relative;
top:.3in;
}
td{
border: 1px solid black;
}
}
</style>
</head>
<body>
<div id="wrap_invoice">
<table>
<tr>
<td width="400"><!--replace this text with variables-->John Smith</td>
<td><!--replace this text with variables-->$1.46</td>
</tr>
<tr>
<td><!--replace this text with variables-->Order#LS0058<td>
</tr>
</table>
</div><!--ends the wrap_invoice-->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment