tabellenabstand zum text

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • tabellenabstand zum text

    hallo leute,

    habe ein problem mit einer tabelle. um die tabelle läuft text und die tabelle soll
    einen 5 pixel abstand zum text haben. folgendes hab ich bis jetzt geschrieben:

    PHP-Code:
    <table border=0 cellpadding=0 cellspacing=0 width=200 align=left hspace=5 vspace=5
    der 'hspace' und 'vspace' wird aber gar nicht akzeptiert!?! gibts da irgendeine
    andere möglichkeit?

    gruss - seered !!

  • #2
    die cssdefinition "margin"

    Kommentar


    • #3
      naja,

      das
      Code:
      <table border=0 cellpadding=0 cellspacing=0 width=200 align=left hspace=5 vspace=5>
      oder, wie es eigentlich sein sollte
      Code:
      <table border="0" cellpadding="0" cellspacing="0" width="200" align="left" hspace="5" vspace="5">
      könnte so aussehen
      Code:
      <table align="left" cellspacing="0" style="border:0px; width:200px; margin:5px;>
      und da die tabelle sowieso floatet, kannst du auch
      Code:
      <table cellspacing="0" style="border:0px; width:200px; margin:5px; float:left;>
      benutzen ...
      Die Zeit hat ihre Kinder längst gefressen

      Kommentar

      Lädt...
      X