View Single Post
Old 02-16-2012, 02:52 AM   #3
Toxaris
Wizard
Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.
 
Toxaris's Avatar
 
Posts: 4,520
Karma: 121692313
Join Date: Oct 2009
Location: Heemskerk, NL
Device: PRS-T1, Kobo Touch, Kobo Aura
It is quite easy to fix the width of a column to a fixed percentage. If it only two columns, you only need to specify one.
Code:
.colw {
width: 75%;
}
and in HTML:
Code:
<table width=100%>
<tr>
<td class="colw">75%</td>
<td>the rest...</td>
</tr>
</table>
Keeping the table on one page is difficult. You could try something with page-break-avoid, but than it must fit on a page. With the different zoomlevels, that is hard to control.

Last edited by Toxaris; 02-16-2012 at 02:58 AM.
Toxaris is offline   Reply With Quote