PDA

View Full Version : [HTML] Table Help



helpmeplease
09-11-2008, 11:46 AM
I need a table to appear in the top left corner but I can't remember how! :S It's something like
<table topmargin="0" leftmargin="0"> but it isn't. AARGH! HELP ME!

Jackboy
09-11-2008, 12:36 PM
<style>
table {
margin: 0 auto;
}
</style>


Surely that would work?

helpmeplease
09-11-2008, 04:31 PM
<style>
table {
margin: 0 auto;
}
</style>


Surely that would work?
still not working - any1 else?

Jackboy
09-11-2008, 06:34 PM
change table to body then?

Decode
11-11-2008, 04:14 PM
table {
margin: 0px;
}

L?KE
11-11-2008, 05:31 PM
Need to give the body margin and padding sa 0 too.



body {
margin: 0;
padding: 0;
}
table {
margin: 0;
top: 0;
left: 0;
}

Want to hide these adverts? Register an account for free!