To flip your tables (put the left hand columns on the right and right hand columns to the left), add this code to your page:
<style type="text/css">
table {direction:rtl;}
table table table {direction:ltr;}
</style>
To flip the scrollbar to the left side as well as the columns, add this code to your page:
<style type="text/css">
body, table {direction:rtl;}
table table table {direction:ltr;}
</style>
To flip just the scrollbar and nothing else, add this code to your page:
Flipping the scrollbar will not work with firefox.
<style type="text/css">
body {direction:rtl;}
table {direction:ltr;}
</style>
|
|