Я пытаюсь нарисовать 2 таблицы (5x2) и напечатать их на 2 сторонах листа.Проблема в том, что таблицы, напечатанные с обеих сторон, не расположены в одном и том же месте.
На первой странице поля по краям: 11 мм, 9 мм, 9 мм, 11 мм (TRBL)
На второй странице поля по краям: 9 мм, 11 мм, 11 мм, 9 мм (TRBL)
Я думаю, что проблема приходитиз принтера или браузера (используя Chrome) настройки полей по умолчанию.Я пытался исправить это с помощью правил @page (установите поле 10 мм для всех краев), но не повезло, оно не работает (не влияет на поля).
Я прикрепил HTML и CSS ниже, пожалуйста, помогите.Спасибо.
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="termBlock"><div class="termContent" style="font-weight: bold; font-size: 15px;"></div></div><div class="termBlock"><div class="termContent" style="font-weight: bold; font-size: 15px;"></div></div><div class="termBlock"><div class="termContent" style="font-weight: bold; font-size: 15px;"></div></div><div class="termBlock"><div class="termContent" style="font-weight: bold; font-size: 15px;"></div></div><div class="termBlock"><div class="termContent" style="font-weight: bold; font-size: 15px;"></div></div><div class="termBlock"><div class="termContent" style="font-weight: bold; font-size: 15px;"></div></div><div class="termBlock"><div class="termContent" style="font-weight: bold; font-size: 15px;"></div></div><div class="termBlock"><div class="termContent" style="font-weight: bold; font-size: 15px;"></div></div><div class="termBlock"><div class="termContent" style="font-weight: bold; font-size: 15px;"></div></div><div class="termBlock"><div class="termContent" style="font-weight: bold; font-size: 15px;"></div></div><div style="clear: both; page-break-after: right;"></div><div class="termBlock"><div class="termContent" style="font-weight: bold; font-size: 14px;"></div></div><div class="termBlock"><div class="termContent" style="font-weight: bold; font-size: 14px;"></div></div><div class="termBlock"><div class="termContent" style="font-weight: bold; font-size: 14px;"></div></div><div class="termBlock"><div class="termContent" style="font-weight: bold; font-size: 14px;"></div></div><div class="termBlock"><div class="termContent" style="font-weight: bold; font-size: 14px;"></div></div><div class="termBlock"><div class="termContent" style="font-weight: bold; font-size: 14px;"></div></div><div class="termBlock"><div class="termContent" style="font-weight: bold; font-size: 14px;"></div></div><div class="termBlock"><div class="termContent" style="font-weight: bold; font-size: 14px;"></div></div><div class="termBlock"><div class="termContent" style="font-weight: bold; font-size: 14px;"></div></div><div class="termBlock"><div class="termContent" style="font-weight: bold; font-size: 14px;"></div></div><div style="clear: both; page-break-after: right;"></div>
</body></html>
style.css
@page {
size: legal portrait;
margin: 10mm 10mm 10mm 10mm;
}
@media print {
@page {
size: legal portrait;
margin: 10mm 10mm 10mm 10mm;
}
}
.termBlock {
width: 100%;
height: 100%;
max-width: 368px;
max-height: 193px;
border: 1px dashed lightblue;
float: left;
}
.termContent {
padding: 10px;
}
reset.css
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}