How do i put my html table at the very top of the page using css?

Chase K. Utley

New member
Iv been trying to find out how to put my HTML table at the top of the page using css but i cant reall figure out how to do it?????
ok im not very good at all at css so ill need a little help and i do want the table at the very... top of the age please help.......
 
Uh, I don't know exactly what you mean, if you mean at the absolute top of the page then you can use absolute positioning and set the top as 0. Example:
table
{
position : absolute;
top : 0;
}
 
Back
Top