Ankündigung

Einklappen
Keine Ankündigung bisher.

Anpassbares Tabellenlayout

Einklappen

Neue Werbung 2019

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

  • Anpassbares Tabellenlayout

    Tach

    ich steh grad aufm Schlauch. Hab nen Tabellenlayout, bestehend aus nem Menü (Red1), Bild (Green1), Anzeige (Green2) und nem leeren Feld was sich anpassen soll (Red2).

    Code:

    Code:
           <table border="0" style="border:1px solid black"> 
            <tr>
             <td valign="top">
                  <table border="0" width="177">
                   <tr height="150">
                    <td style="border:1px solid red">Red1</td>
                   </tr>
                   <tr>
                    <td style="border:1px solid red">Red2</td>
                   </tr>
                  </table>
             </td>
             <td valign="top">
                  <table border="0" width="472" style="border:1px solid green">
                   <tr height="102">
                    <td>Green1</td>
                   </tr>
                   <tr>
                    <td>Green2
    
    
    
    
    
    
    </td>
                   </tr>
                  </table>
             </td>
            </tr>
           </table>
    Jetzt hab ich ein Problem. Wie mach ich es, dass sich Red2 automatisch an die gesamte Tabellenhöhe anpasst (hab schon etliches versucht nd es klappt nicht).

    Weiss jemand weiter? Danke schonmal für jede Antwort.
    [I]"Weaseling out of things is important to learn. It's what separates us from the animals ... except the weasel." (Homer J. Simpson)[/I]

  • #2
    Mal abgesehen davon, dass Tabellenlayout nicht mehr so aktuell ist:

    Code:
    table border="0" style="border:1px solid black">
            <tr style="height:100%">
             <td valign="top">
                  <table border="0" width="177" style="height:100%">
                   <tr height="150">
                    <td style="border:1px solid red">Red1</td>
                   </tr>
                   <tr>
                    <td style="border:1px solid red">Red2</td>
                   </tr>
                  </table>
             </td>
             <td valign="top">
                  <table border="0" width="472" style="border:1px solid green">
                   <tr height="102">
                    <td>Green1</td>
                   </tr>
                   <tr>
                    <td>Green2
    
    
    
    
    
    
    </td>
                   </tr>
                  </table>
             </td>
            </tr>
           </table>

    Kommentar


    • #3
      <table border="0" style="border:1px solid black">
      muss man das verstehen ?
      [URL="http://www.robo47.net"]robo47.net[/URL] - Blog, Codeschnipsel und mehr
      | :arrow: [URL="http://www.robo47.net/blog/192-Caching-Libraries-and-Opcode-Caches-in-php-An-Overview"]Caching-Klassen und Opcode Caches in php[/URL] | :arrow: [URL="http://www.robo47.net/components"]Robo47 Components - PHP Library extending Zend Framework[/URL]

      Kommentar


      • #4
        Wird aber konsequent auch bei den anderen Tabellen angewendet...

        Kommentar


        • #5
          klar mit div gehts auch, aber ist das so variabel? Hab da mal was gelesen das as da entweder nicht geht oder schlecht.

          edit --> hab ich nur in dem beispiel der übersicht halber gemacht, da der normale border platz verbraucht etc und so 3D effekt hat und der solide style etc. Mach ich natürlich im Code nicht is doch scheisse :P
          [I]"Weaseling out of things is important to learn. It's what separates us from the animals ... except the weasel." (Homer J. Simpson)[/I]

          Kommentar


          • #6
            btw ist es möglich dass

            style="width:200pt" nicht ganz valide ist und man ein smikolon hinten anhängen muss?

            also style="width:200pt;" oder ist das egal?
            [I]"Weaseling out of things is important to learn. It's what separates us from the animals ... except the weasel." (Homer J. Simpson)[/I]

            Kommentar


            • #7
              a) Versuch es
              b) px oder pt? Iss'n Unterschied.

              Kommentar

              Lädt...
              X