は、あなたが任意のコードを提供していなかったにもかかわらず、私はそれで刺してみよう:
まず、SelectivizrとjQueryを取得するIEは、CSS3のものを読むことができるように、我々は必要です:
ここでは、私はすぐに設定HTMLです
<div id="wrapper">
<div class="barcode">
<img src="/path/to/barcodes/1.jpg" />
<span class="descr">Some descriptive text</span>
</div>
<div class="barcode">
<img src="/path/to/barcodes/1.jpg" />
<span class="descr">Some descriptive text</span>
</div>
<div class="barcode">
<img src="/path/to/barcodes/1.jpg" />
<span class="descr">Some descriptive text</span>
</div>
<div class="barcode">
<img src="/path/to/barcodes/1.jpg" />
<span class="descr">Some descriptive text</span>
</div>
<div class="barcode">
<img src="/path/to/barcodes/1.jpg" />
<span class="descr">Some descriptive text</span>
</div>
<div class="barcode">
<img src="/path/to/barcodes/1.jpg" />
<span class="descr">Some descriptive text</span>
</div>
<div class="barcode">
<img src="/path/to/barcodes/1.jpg" />
<span class="descr">Some descriptive text</span>
</div>
<div class="barcode">
<img src="/path/to/barcodes/1.jpg" />
<span class="descr">Some descriptive text</span>
</div>
<div class="barcode">
<img src="/path/to/barcodes/1.jpg" />
<span class="descr">Some descriptive text</span>
</div>
<div class="barcode">
<img src="/path/to/barcodes/1.jpg" />
<span class="descr">Some descriptive text</span>
</div>
</div>
そして、ここで必要なCSSです:
body { margin: 0; padding: 0; }
#wrapper { width: 100%; display: block; }
.barcode { width: 30%; float: left; margin-bottom: 50px; }
.barcode img { display: block; width: 150px; height: 150px; margin: 0 auto 10px auto; } /* set to whatever the barcodes will be in size */
.barcode span { display: block; text-align: center; }
#wrapper div.barcode:nth-child(3n+4) { clear: left; }
#wrapper div.barcode:nth-child(6n+6) { page-break-after: always; background: #000; } /* Use 9n+9 to page break after each 9th item. */
はそれぞれ6位バーコードの後にこの意志の改ページ。私があなたの質問を正しく理解していれば、これは「常にうまくいくはずです」。私はテストのために持っているシステムの量が制限されたんだ。もちろん、
... :)
いくつかのコードをしてください?...そして、あなたは「インターフェース」を言って、まだ私は空白のページとを想定していますあなたがデータを提供しなかったので私は確信が持てません。しかし、印刷やWebに関しては、2つの世界に分かれています。 1つは72dpiで、もう1つはdpiです。私は平均的なプリンタは120dpiを使用していると思います。このため、毎回あらゆるシステムの動作を正確に予測することはできません。しかし、もしあなたがいくつかのコードを提供すれば、私はそれを "ほぼいつも"働かせることができると確信しています... –