> I have a long but a usually narrow 58 row table.  When this is
> printed it would span vertiaclly across two pages. But it is normally
> narrow enough that the two haves could easily fit side by side on a
> single page.
> 
> So my question is there an easy way, possible with CSS but I am unsure, 
> to have the two parts of this table sit side by side on a printed page, 
> without making it do this on the screen display.  The solution would 
> also need to be smart enough to that when the table is occasionally to 
> wide to do this, to flow normally across two pages.

Yep... If you've already broken the table into 2 halves, you can just
float them both to the left. 

<style>
        #mytables table { float: left; } 
</style>

<div id="mytables">
<table id="table1">...</table>
<table id="table2">...</table>
</div>

hth,
ike

-- 
s. isaac dealey  ^  new epoch
 isn't it time for a change? 
     ph: 781.769.0723

http://onTap.riaforge.org/blog



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314617
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to