<IMG> und <APPLET>

Status
Nicht offen für weitere Antworten.

PositivDenker

Mitglied
HTML:
<img src='linkeseite.jpg' width=500 height=57>
<APPLET CODE = 'RechteSeite.class' WIDTH = 200 HEIGHT = 57 >
Zwieschen den beiden Objekten befindet sich eine unschöne Lücke (ca 15 Pixeln).
Wie kann ich den Abstand abnullen?
 
HTML:
<style type='text/css' media='all'>@import 'MeineCSSDatei.css';</style>


	</head>
	<body>
<table border=0 width=784 cellspacing=0 cellpadding=0>
	<tr>
		<td colspan=2>
		<APPLET CODE = 'Oben.class' WIDTH = 700 HEIGHT = 57></APPLET>
		</td>
	</tr>
	<tr>
		<td><img src='linkeseite.bmp' width=500 hight=57>
		</td>
		<td><APPLET CODE = 'RechteSeite.class' WIDTH = 200 HEIGHT = 57 >
		</td>
	</tr>
</table>
Hier ist Auszug aus "MeineCSSDatei.css" :
Code:
...
TABLE:TD {  margin-top: 0cm;  margin-right: 0cm;  margin-bottom: 0cm;  margin-left: 0cm;}
TABLE:TR {  margin-top: 0cm;  margin-right: 0cm;  margin-bottom: 0cm;  margin-left: 0cm;}
...
Mit dem habe ich "horizontal"-Abstand gelöscht. Nun brauche ich zwieschen Tabellenzeilen kein Abstand mehr haben. Wo liegt mein Fehler? :confused:
 
Status
Nicht offen für weitere Antworten.
Zurück