If you have a web page that cuts the images in half when printed, all you need to do is add the following codes in your CSS style sheet.
@media print {
div {
page-break-inside: avoid;
}
}
Magic.
If you have a web page that cuts the images in half when printed, all you need to do is add the following codes in your CSS style sheet.
@media print {
div {
page-break-inside: avoid;
}
}
Magic.