I m trying to print two shipping labels in one A4 sheet using @media query print css. Following is the code i'm trying but it is coming as one shipping label half in one sheet another one shipping label in another sheet. I need to fit in both the shipping labels in one A4 sheet.
Can someone pls help me or guide me how to do this, to fit two shipping labels in one A4 sheet using @media print css. Following is the code i m using.
<style media="print">
.print { display:none; }
body {
width: 470px !important;
height: 300px;
margin-top: -270;
margin-left: 100px;
page-break-inside: avoid;
}
</style>
thanks in advance...!!!!