Pergunta

This is so weird; I have set the margin using CSS of everything to be 0

   *{
   margin: 0 0 0 0
   }

but there is still space above the table http://onlinehandytools.com/blah.php?board=EDE&level=AL&subject=biology&year=2009

Foi útil?

Solução

1] You have three line breaks <br><br><br> above the table, remove them and the space will be gone.

2] Change margin:0 0 0 0; to margin:0; and add a ; after text-align:center.

Change This:

<h2 style="margin:0 0 0 0;text-align:center">Year: 2009</h2>
<br>
<br>
<br>
<div class="k-grid k-widget">

To this:

<h2 style="margin:0; text-align:center;">Year: 2009</h2>
<div class="k-grid k-widget">
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top