Forum Moderators: not2easy

Message Too Old, No Replies

Can CSS reverse the table order?

         

Ahkin

2:39 am on Aug 2, 2005 (gmt 0)

10+ Year Member



Hi all,
i have two table:

+--------+
table 1
+--------+

+--------+
table 2
+--------+

but i want to change the table order like that:

+--------+
table 2
+--------+

+--------+
table 1
+--------+

can i use css and how to do that?

tks all ^^

drhowarddrfine

3:00 am on Aug 2, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



If you used divs instead of tables it would be easy. I don't know if you can reorder table data since tables are used to keep data in a particular order so it wouldn't make any sense to allow it to be rearranged.

Ahkin

7:28 am on Aug 2, 2005 (gmt 0)

10+ Year Member



if i use div to surround the table, how to use CSS to rearranged it? use Box float?

<div id=table1>
<table><tr><td>1</td></tr></table>
</div>

<div id=table2>
<table><tr><td>2</td></tr></table>
<div>

tks. ^^