in reply to printing out a table X wide and X down without html::template
Do you need them in a table or will a grid-style layout that automagically resizes to the browser window suffice? I use this in my gallery though you may want to adjust the width & height attributes.
CSSHTMLdiv.image { float:left; display:inline; text-align: left; margin-left: 1em; margin-right: 1em; width: 200px; height: 250px; }
<div id='image'> <img src='1.jpg'> <img src='2.jpg'> </div>
|
|---|