pragmaMx Support Forum

alles für Webmaster => Webseitengestaltung Allgemein => Thema gestartet von: scaleo am 15 April 2006, 13:53:18

Titel: Anfänger Problem Html Tabelle
Beitrag von: scaleo am 15 April 2006, 13:53:18
Hallo ich hab folgendes erstellt:
Eine 2spaltige Tabelle mit Breite 140 und Höhe 26
2anklickbare Bildchen mit Breite 70  und Höhe 26
Wenn ich die beiden Bildern in die Tabelle einfüge sieht es in der Vorschau so aus wie gewünscht :

(https://forum.pragmamx.org/proxy.php?request=http%3A%2F%2Fwww.palpalo.de%2F1.jpg&hash=4be44508c410281d7d11efe9ced18333609afd77)


Aber das Endresultat dann doch so:

(https://forum.pragmamx.org/proxy.php?request=http%3A%2F%2Fwww.palpalo.de%2F2.jpg&hash=8d7a465eb9da28aac181c6c028f04853f4edcd7a)
Titel: Re: Anfänger Problem Html Tabelle
Beitrag von: Musicman75 am 15 April 2006, 14:17:35
cellpadding="0" cellspacing="0"

das muss noch zum table tag rein.
Titel: Re: Anfänger Problem Html Tabelle
Beitrag von: scaleo am 15 April 2006, 16:33:24
<TABLE cellSpacing=0 cellPadding=0 width=140 border=0>
<TBODY>
<TR>
<TD><A href="http://xx/"><IMG height=28 src="/images/iupload/deutsch.jpg" width=70 align=left border=0></A><A href="http://xxx/"><IMG height=28 src="/images/iupload/turkisch.jpg" width=70 align=left border=0></A></TD></TR></TBODY></TABLE>

Also so klappts nicht  ???
Titel: Re: Anfänger Problem Html Tabelle
Beitrag von: jogi24 am 15 April 2006, 16:46:36
hi

versuchs mal damit

<table border="0" cellpadding="0" cellspacing="0"  width="140">
  <tr>
    <td width="70"><A href="http://xx/"><IMG height=28 src="/images/iupload/deutsch.jpg" width=70 border=0></A></td>
    <td width="70"><A href="http://xxx/"><IMG height=28 src="/images/iupload/turkisch.jpg" width=70 border=0></A></td>
  </tr>
</table>

;) ;)