SAMPLE BARCODE LABEL TEMPLACSS HTML PHP
<html>
<head>
<style>
body {
margin: 0;
padding: 0;
} }
* {
box-sizing: border-box;
-moz-box-sizing: border-box;
}
.page {
width: 21cm;
min-height: 29.7cm;
padding: 0cm;
margin: auto;
background: white;
}
.box {
display:block;
box-sizing: border-box;
width:50mm;
height:25mm;
float:left;
text-align: left;
vertical-align: top;
border: 1px solid red;
Padding:3mm;
margin-bottom: 7px;
margin-inline-start: 7px;
}
@page {
size: A4;
margin: 4mm 0 4mm 0 ;
}
@media print {
.page {
margin: 0;
border: initial;
border-radius: initial;
width: initial;
min-height: initial;
box-shadow: initial;
background: initial;
page-break-after: always;
}
}
</style>
</head>
<body>
<div class="page">
<div class="box">TITLE NAME<p>Barcode-Abcd1234</p></div>
<div class="box">TITLE NAME<p>Barcode-Abcd1234</p></div>
<div class="box">TITLE NAME<p>Barcode-Abcd1234</p></div>
<div class="box">TITLE NAME<p>Barcode-Abcd1234</p></div>
<div class="box">TITLE NAME<p>Barcode-Abcd1234</p></div>
<div class="box">TITLE NAME<p>Barcode-Abcd1234</p></div>
<div class="box">TITLE NAME<p>Barcode-Abcd1234</p></div>
<div class="box">TITLE NAME<p>Barcode-Abcd1234</p></div>
<div class="box">TITLE NAME<p>Barcode-Abcd1234</p></div>
<div class="box">TITLE NAME<p>Barcode-Abcd1234</p></div>
<div class="box">TITLE NAME<p>Barcode-Abcd1234</p></div>
<div class="box">TITLE NAME<p>Barcode-Abcd1234</p></div>
</div>
</body>
</html>
Comments
Post a Comment