How to horizontally center a table in <body> in HTML with css?

Roland Orosz

New member
Hello!

I'm working on my school work, but i cant get it working. :S
Well, the table must be 760px wide and it must be centered horizontally. I have been working on it for about 3 hours with no success and i cant find anything working on the internet...
I tried text-align centering, i tried centering with divs... but it stays just on the left. T_T
Pls, help me >.< You are my only hope :)

i need to position this table horizontally centered:

<table class="center" style="margin-left: auto; margin-right:auto" border="5" cellspacing="0">
<tr><td colspan="2" style="width: 760px">
center me pls
</td></tr>
<tr><td>1. cell</td><td>2.cell</td></tr>
<tr style="width: 760px"><td colspan="2">something here</td><td></td></tr>
 
Back
Top