Created
December 8, 2011 06:26
-
-
Save SpencerCooley/1446281 to your computer and use it in GitHub Desktop.
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> | |
<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