Jump to content
Fórum Script Brasil
  • 0

Maldito Ie: Pq Fica Espaço Em Branco Entre Tds?


::..Hunter..::

Question

Esperimentem criar uma tabela de 2 linhas por 1 coluna, e na linha de cima colocar uma figura a esquerda e outra figura como background.

na linha de baixo apenas coloque uma cor diferente, você notará que entre as 2 linhas fica um espaço branco do nada. mad.gif

Ex:

<table width="100%" border="0" cellPadding="0" cellSpacing="0">

<tr>

<td valign="top" style="background-image: url(fundo.gif)">

<a href="#"><img src="imagem.gif" alt="#" width="447" height="70" border="0"></a>

</td>

</tr>

<tr bgcolor="#000033">

<td valign="top">asdasd</td>

</tr>

</table>

veja o código AQUI!

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Não sei o que pode estar acontecendo exatamente no seu caso... mas você pode tentar algumas coisas. Como, por exemplo, colocar o estilo "margin: 0px;" para a imagem... vai tentando "debugar" seu HTML... pode tb mudar os estilos da <td>, como padding, line-height, etc..

Link to comment
Share on other sites

  • 0

Muito Simples... ao invez de você colocar a sim as tabelas..

<table>

<tr>

<td>

</td>

</tr>

</table>

coloque elas assim...:

<table>

<tr>

<td></td>

</tr>

</table>

sem espaco entre as celulas (<td>e</td>).. entendeu

<table width=100% border="0" cellPadding="0" cellSpacing="0">
       <tr>
           <td height=70  valign="top" style="background-image: url(fundo.gif);background-repeat: no-repeat; ">
               <a href="#"><img src="imagem.gif" alt="#" width="447" height="70" border="1"></a></td>
       </tr>
       <tr bgcolor="#000033">
           <td valign="top">asdasd</td>
       </tr>
</table>

Link to comment
Share on other sites

  • 0

solução:

<table width="100%" border="0" cellPadding="0" cellSpacing="0">
<tr bgcolor="#000033"> 
<td valign="top" style="background-image: url(fundo.gif)"> 
<a href="#"><img src="imagem.gif" alt="#" width="447" height="70" border="0"></a> 
</td>
</tr>
<tr bgcolor="#000033"> 
<td valign="top">asdasd</td>
</tr>
</table>

wink.gif

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      651.8k
×
×
  • Create New...