::..Hunter..:: Posted February 2, 2005 Report Share Posted February 2, 2005 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. 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! Quote Link to comment Share on other sites More sharing options...
0 Illidan Posted February 2, 2005 Report Share Posted February 2, 2005 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.. Quote Link to comment Share on other sites More sharing options...
0 lord_e Posted February 2, 2005 Report Share Posted February 2, 2005 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> Quote Link to comment Share on other sites More sharing options...
0 FabricioGomes Posted February 2, 2005 Report Share Posted February 2, 2005 é, eu tive um problema parecido com img.... deixava um espaco e atrapalhava tudo... colocando na mesma linha ficou certo.... Quote Link to comment Share on other sites More sharing options...
0 smiler Posted February 2, 2005 Report Share Posted February 2, 2005 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> Quote Link to comment Share on other sites More sharing options...
0 ::..Hunter..:: Posted February 2, 2005 Author Report Share Posted February 2, 2005 lord_e, valeu mesmo, o fato de colocar os todos na mesma linha resolveu. Eu "adoro" o IE, como uma coisa tão boba como o posicionamento de tags pode alterar o layout do site. Agradeço a todos pela ajuda. Quote Link to comment Share on other sites More sharing options...
Question
::..Hunter..::
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.
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
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.