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

Zeilenausrichtung oben und unten

Status
Für weitere Antworten geschlossen.

nipoda

Neues Mitglied
Hallo!

Ich habe eine Tabelle, dort will ich, dass der Content nicht in der Mitte sondern immer oben angezeigt wird.
Also quasi, wie <left> links bedeutet...

Ich habe mal auf Verdacht <ahead> probiert, doch das hat nicht geklappt!

Was muss ich da nehmen?:?:

Danke schonmal im vorraus.
 
Werbung:
Aus Gründen des Homepagebaues würde der Banner dann untendrunter landen, das will ich ja nicht.
Code:
<table border="0">
<colgroup>
	<col width="1000">
	<col width="125">
</colgroup>
<tr>
	<td><php><?php include 'startseitenblog.htm'; ?></php></td>
	<td><ahead>
	<!-- Anschlusstor Tag 2008-12 -->
<script type='text/javascript'>
   var m3_u = (location.protocol=='https:'?'https://adserver.anschlusstor.de/www/delivery/ajs.php':'http://adserver.anschlusstor.de/www/delivery/ajs.php');
   var m3_r = Math.floor(Math.random()*99999999999);
   if (!document.MAX_used) document.MAX_used = ',';
   document.write ("<scr"+"ipt type='text/javascript' src='"+m3_u);
   document.write ("?zoneid=19199&amp;target=_blank&amp;block=1&amp;blockcampaign=1");
   document.write ('&amp;cb=' + m3_r);
   if (document.MAX_used != ',') document.write ("&amp;exclude=" + document.MAX_used);
   document.write ("&amp;loc=" + escape(window.location));
   if (document.referrer) document.write ("&amp;referer=" + escape(document.referrer));
   if (document.context) document.write ("&context=" + escape(document.context));
   if (document.mmm_fo) document.write ("&amp;mmm_fo=1");
   document.write ("'><\/scr"+"ipt>");
</script></ahead></td>
</tr>
</table>
Das ist der Ausschnitt..
 
Werbung:
Mit CSS:

Code:
text-align: left;
für linksbündig.

Code:
vertical-align: top;
für oben.

Zudem sind Tabellen nicht als Grundgerüst für eine Seite gedacht.
 
Status
Für weitere Antworten geschlossen.
Zurück
Oben