Align a table to the right with CSS

Align a table to the right with CSS

am 21.10.2007 17:35:02 von cristian

Hello, I wanted to know if it is possible to align a table to the
right with CSS?
I use "margin-left: auto; margin-right: auto;" to center tables, but I
don't know how can I change those parameters to make it go to the
right.

Thank you for your help!

Re: Align a table to the right with CSS

am 21.10.2007 17:49:10 von Safalra

On Sun, 21 Oct 2007 15:35:02 -0000, Cristian wrote:
> Hello, I wanted to know if it is possible to align a table to the
> right with CSS?
> I use "margin-left: auto; margin-right: auto;" to center tables, but I
> don't know how can I change those parameters to make it go to the
> right.


Just use margin-left:auto (and make sure it's not having margin-right set
to auto by another less specific rule). If you want the content to flow
around it, you can use float:right.


--
Safalra (Stephen Morley)

Sortable Tables In JavaScript:
http://www.safalra.com/web-design/javascript/sortable-tables /

Re: Align a table to the right with CSS

am 21.10.2007 18:10:45 von cristian

On 21 oct, 09:49, "Safalra (Stephen Morley)"
wrote:
> On Sun, 21 Oct 2007 15:35:02 -0000, Cristian wrote:
> > Hello, I wanted to know if it is possible to align a table to the
> > right with CSS?
> > I use "margin-left: auto; margin-right: auto;" to center tables, but I
> > don't know how can I change those parameters to make it go to the
> > right.
>
> Just use margin-left:auto (and make sure it's not having margin-right set
> to auto by another less specific rule). If you want the content to flow
> around it, you can use float:right.
>
> --
> Safalra (Stephen Morley)
>
> Sortable Tables In JavaScript:http://www.safalra.com/web-design/javascript/sort able-tables/

Thank you so much!
I added this "margin-left: auto; margin-right: 0px;" and the table
went to the right, just the way I wanted.

Bye!