Advertisement
nbarrager

4x2

May 11th, 2020
1,136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.95 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head><title>4x2 Warehouse Shelf Labels</title>
  4. <style>
  5. * {
  6.     font-family: arial;
  7. }
  8. .border {
  9.     width: 4cm;
  10.     height: 2cm;        /*get correct dimensions as well as skus and*/
  11.     position: relative; /*seq for that one item*/
  12.     border-style: solid;
  13.     border-width: 1px;
  14.    
  15. }
  16. .title {
  17.     font-size: 80%;
  18.     font-weight: bold;
  19.     text-align: center;
  20. }
  21. .altpn {
  22.     font-size: 62%;
  23.     left: 2px;
  24.     top: 65%;
  25.     position: absolute;
  26. }
  27. .plano {
  28.     font-size: 62%;
  29.     left: 2px;
  30.     position: absolute;
  31.     top: 80%;
  32. }
  33. .sequence {
  34.     font-size: 62%;
  35.     position: absolute;
  36.     top: 80%;
  37.     left: 0;
  38.     right: 0;
  39.     text-align: center;
  40. }
  41. .sku {
  42.     font-size: 62%;
  43.     position: absolute;
  44.     top: 80%;
  45.     right: 2px;
  46. }
  47. </style>
  48. </head>
  49. <body>
  50.  
  51. <br>
  52. <div class="border">
  53.     <div class="title">                 </div>
  54.     <div class="altpn">                 </div>
  55.     <div class="plano">                 </div>
  56.     <div class="sequence">              </div>
  57.     <div class="sku">                   </div>
  58. </div>
  59. <br>
  60.  
  61. </body>
  62. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement