Skip to content

Instantly share code, notes, and snippets.

@kriskornel
Last active January 24, 2021 08:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kriskornel/53f929583e41b7a240bbafb6314dd3ec to your computer and use it in GitHub Desktop.
Save kriskornel/53f929583e41b7a240bbafb6314dd3ec to your computer and use it in GitHub Desktop.
Put the right rowspan for payment method
<!DOCTYPE html>
<html lang="en">
<head>
<style>
td, th {
padding: 8px;
}
tr:nth-child(even) {
background-color: #dddddd;
}
</style>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<table style="border-collapse: collapse; border: 1px solid #dddddd; ">
<tr align="left">
<th>Qty</th>
<th>Product</th>
<th>Serial #</th>
<th>Description</th>
<th>Subtotal</th>
</tr>
<tr>
<td>1</td>
<td>Call of Duty</td>
<td>455-981-221</td>
<td>El snort testosterone trophy driving gloves handsome</td>
<td>$64.50</td>
</tr>
<tr>
<td>1</td>
<td>Need for Speed IV</td>
<td>247-925-726</td>
<td>Wes Anderson umami biodiesel</td>
<td>$50.00</td>
</tr>
<tr>
<td>1</td>
<td>Monster DVD</td>
<td>735-845-642</td>
<td>Terry Richardson helvetica tousled street art master</td>
<td>$10.70</td>
</tr>
<tr>
<td>1</td>
<td>Grown Ups Blue Ray</td>
<td>422-568-642</td>
<td>Tousled lomo lettepress</td>
<td>$22.99</td>
</tr>
<tr>
<td colspan="3" style="font-family: Arial, Helvetica, sans-serif;">Payment Method:</td>
<td colspan="2">Amount Due 2/22/2014</td>
</tr>
<tr>
<td colspan="3">
<img src="https://adminlte.io/themes/AdminLTE/dist/img/credit/visa.png">
<img src="https://adminlte.io/themes/AdminLTE/dist/img/credit/mastercard.png">
<img src="https://adminlte.io/themes/AdminLTE/dist/img/credit/american-express.png">
<img src="https://adminlte.io/themes/AdminLTE/dist/img/credit/paypal2.png">
</td>
<td><b>Subtotal:</b></td>
<td>$250.30</td>
</tr>
<tr>
<td colspan="3" rowspan="3">
<blockquote>
Etsy doostang zoodles disqus groupon greplin oooj voxy zoodles, weebly ning heekya handango imeem plugg dopplr jibjab, movity jajah plickers sifteo edmodo ifttt zimbra.
</blockquote>
</td>
<td><b>Tax (9.3%)</b></td>
<td>$10.34</td>
</tr>
<tr>
<td><b>Shipping:</b></td>
<td>$5.80</td>
</tr>
<tr>
<td><b>Total:</b></td>
<td>$265.24</td>
</tr>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment