Ankündigung

Einklappen
Keine Ankündigung bisher.

[Erledigt] möchte eine Webseite in 3 Teile teilen

Einklappen

Neue Werbung 2019

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

  • [Erledigt] möchte eine Webseite in 3 Teile teilen

    Hi,

    hab nen problem möchte gerne ne Webseite in 3 Teile ohne frameset teilen ...

    Dachte mir so könnte ich das lösen:

    Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>Unbenanntes Dokument</title>
    <style type="text/css">
    <!--
    body {
    	margin-left: 0px;
    	margin-top: 0px;
    	margin-right: 0px;
    	margin-bottom: 0px;
    }
    -->
    </style></head>
    
    <body bgcolor="#CCCCCC">
    <center>
    <table width="780" bgcolor="#009999" height="100%" border="0" cellpadding="0" cellspacing="0">
     <tr>
      <td></td>
      <td></td>
      <td></td>
     </tr>
     <tr>
      <td></td>
      <td></td>
      <td></td>
     </tr>
     <tr>
      <td></td>
      <td></td>
      <td></td>
     </tr>
    </table>
    </center>
    </body>
    </html>
    Hab auch so 3 teile links (grau) mitte (blau) rechts (grau) ... Nur wird die Tabelle nicht mit der Höhe von 100% angezeigt sondern nur so viel wie Text oder
    drinne stehen.

    Hab auch schon mit css getestet aber ohen erfolg kann jmd helfen ???

  • #2
    Versuch es mal mit anderem DT.

    Kommentar


    • #3
      DT ???

      Kommentar


      • #4
        sry, doctype

        Kommentar


        • #5
          Versuchs mal mit css4you

          Kommentar


          • #6
            body {
            margin-left: 0px;
            margin-top: 0px;
            margin-right: 0px;
            margin-bottom: 0px;
            }
            html, body {
            margin: 0;
            height: 100%;
            }

            height="100%"
            Besser mit style="" definieren.

            Kommentar


            • #7
              danke für css4you

              So gehts ....

              html {height:100%;}
              body {
              height:100%;
              margin:0%;
              padding:0%;
              }

              div#a {
              margin:0% 3%;
              padding:0% 3%;
              height:100%;
              border-left:1px solid #eee;
              border-right:1px solid #eee;
              }


              Danke

              Kommentar


              • #8
                Sollte nicht sicherheitshalber noch

                padding:0;

                dazu?

                Kommentar


                • #9
                  margin:0%;
                  Wo nichts ist, braucht auch keine Einheit (%,px,em..) dazu geschrieben werden.
                  Funktioniert aber deswegen auch

                  Kommentar


                  • #10
                    Und nur mal eben zur Klärung, damit mich jetzt nicht hier alle für Intelligenzabstinent halten:

                    Mein Posting bezog sich auf das von CIX, nicht auf das darauf folgende von nosean, war einfach zu langsam...

                    Kommentar

                    Lädt...
                    X