• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

Tablle ganz nach oben...

Status
Für weitere Antworten geschlossen.
J

janjo

Guest
hi, ich hab mal wieder ein problem.....

und zwar bekomme ich diese kästen nicht direkt unter den rand...:(
ich würde gerne den oberen tabellenrand am ersten pixel oben haben...wie macht man das? das muss doch irgendwie funktionieren....?!

Vielen Dank, Jan

HTML:
<html>
<head>
<title>TVG Handball</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
 a:link { text-decoration:none; font-weight:bold; color:#000000; }
 a:visited { text-decoration:none; font-weight:bold; color:#000000; }
 a:hover { text-decoration:none; font-weight:bold; color:#FFFFFF; }
</style>
</head>
<body bgcolor="#339933">

<table bgcolor="#000000" cellspacing="1" cellpadding="0" border="0" height="400" width="135px" align="top">
      <tr>
		<td style="background-image:url(bilder/itze.jpg); background-repeat:no-repeat" width="135" height="130"></td></tr>
      <tr>
		<td style="background-image:url(bilder/1a.gif); background-repeat:no-repeat" width="135" height="135"></td></tr>
      <tr>
		<td style="background-image:url(bilder/dhb.jpg); background-repeat:no-repeat" width="135" height="135"></td></tr>
		<tr bgcolor="#FFFFFF"><td height="135" width="1350"></td></tr>
		<tr bgcolor="#FFFFFF"><td height="135" width="1350"></td></tr>
      </table>
</body>
</html>
 
Falls ich dich richtig verstanden habe, suchst du
Code:
body{
margin:0px;
padding:0px;
}
 
Hallo janjo,

nicht verzweifeln - klar geht das (sofern ich dich richtig verstanden habe). Du musst schlichtweg die Tabelle in ein <div> setzen, dem du den Abstand von oben und von links mit "0px" vorschreibst. Der Tag lautet:

Code:
<div style="position: absolute; LEFT: 0px; TOP: 0px"></div>
Und angewandt auf deinen Code ...

HTML:
<html>
<head>
<title>TVG Handball</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
 a:link { text-decoration:none; font-weight:bold; color:#000000; }
 a:visited { text-decoration:none; font-weight:bold; color:#000000; }
 a:hover { text-decoration:none; font-weight:bold; color:#FFFFFF; }
</style>
</head>
<body bgcolor="#339933">
<div style="position: absolute; LEFT: 0px; TOP: 0px">
<table bgcolor="#000000" cellspacing="1" cellpadding="0" border="0" height="400" width="135px" align="top">
      <tr>
		<td style="background-image:url(bilder/itze.jpg); background-repeat:no-repeat" width="135" height="130"></td></tr>
      <tr>
		<td style="background-image:url(bilder/1a.gif); background-repeat:no-repeat" width="135" height="135"></td></tr>
      <tr>
		<td style="background-image:url(bilder/dhb.jpg); background-repeat:no-repeat" width="135" height="135"></td></tr>
		<tr bgcolor="#FFFFFF"><td height="135" width="1350"></td></tr>
		<tr bgcolor="#FFFFFF"><td height="135" width="1350"></td></tr>
      </table>
</div>
</body>
</html>
Soweit alles klar?
Mit den besten Grüßen
 
vielen dank, das ist ja sensationell...so schnell so unkompliziert...danke
 
Status
Für weitere Antworten geschlossen.
Zurück
Oben