Grafiken in Tabellen
van Ro
- grafik
HI Leute,
ich habe ein allgemeines Problem zu Grafiken in Tabellen.
Problem:
<table border="1" cellpadding="0" cellspacing="0">
<tr>
<td>
<img src="" width="167" height="130" alt=""><img src=""width="433" height="130" alt="">
</td>
</tr>
</table>
Wie bekomme ich es hin, dass zwischen Zellenrand und Grafik kein Freiraum bleibt? Der Grafikrand also mit dem Zellenrand abschließt?
Ich habe schon herumprobiert und recherchiert wie ein Blöder. Bekomme es einfach nicht hin.
Ich hoffe ihr könnt mir helfen.
Gruß
van Ro
Hmmm... hast Du einen Link dazu bzw. welchen Browser benutzt Du? So oder so: Ich rate hier nur (im Sinne von: Ich weiss nicht ,was ich poste :)
Ansonsten würde ich es mit einem 'border="0"' im 'img src'-Tag probieren.
Hope this helps (a little bit)
hi,
<table border="1" cellpadding="0" cellspacing="0">
<tr>
<td>
<img src="" width="167" height="130" alt=""><img src=""width="433" height="130" alt="">
</td>
</tr>
</table>
Wie bekomme ich es hin, dass zwischen Zellenrand und Grafik kein Freiraum bleibt? Der Grafikrand also mit dem Zellenrand abschließt?
machs mit css:
http://selfhtml.teamone.de/css/index.htm.
kann man auch andere tolle sachen mit machen :)
<table border="1" cellpadding="0" cellspacing="0">
<tr>
<td>
<img src="" width="167" height="130" alt="" style="margin:0;padding:0"><img src=""width="433" height="130" alt="" style="margin:0;padding:0">
</td>
</tr>
</table>
tschÖ
*stefan
HI Leute,
ich habe ein allgemeines Problem zu Grafiken in Tabellen.
Problem:
<table border="1" cellpadding="0" cellspacing="0">
<tr>
<td>
<img src="" width="167" height="130" alt=""><img src=""width="433" height="130" alt="">
</td>
</tr>
</table>
Wie bekomme ich es hin, dass zwischen Zellenrand und Grafik kein Freiraum bleibt? Der Grafikrand also mit dem Zellenrand abschließt?
Ich habe schon herumprobiert und recherchiert wie ein Blöder. Bekomme es einfach nicht hin.
Ich hoffe ihr könnt mir helfen.
Gruß
van Ro
Hallo,
hier noch eine Lösung:
<table border="1" cellpadding="0" cellspacing="0">
<tr>
<td><img src="" width="167" height="130" alt="" vspace="0" hspace="0" img src="" width="433" height="130" alt="" vspace="0" hspace="0"><td>
</tr>
</table>
mfg
sp