Print styles: How to ensure image doesn’t span a page break

The only means I can think of is to use one (or potentially more) of the following css rules: img { page-break-before: auto; /* ‘always,’ ‘avoid,’ ‘left,’ ‘inherit,’ or ‘right’ */ page-break-after: auto; /* ‘always,’ ‘avoid,’ ‘left,’ ‘inherit,’ or ‘right’ */ page-break-inside: avoid; /* or ‘auto’ */ } I half-recall that these declarations only apply … Read more