Div will einfach nicht 100% sein

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

  • Div will einfach nicht 100% sein

    Hallo Leute
    Ich kann es nicht verstehen und finde den Fehler nicht.
    habe ein Container und ein linkes Div Sidebar1 benannt, das sollte mit der Hintergrund Farbe bis zum Ende der Seite gehen auch wenn nichts darin steht, allerdings klappt es nicht und ichreis mir bald was aus, wer kann mir helfen.

    body {
    font: 100%/1.4 Verdana, Arial, §§ Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    color: #000;
    background-color: #3c4e58;
    }
    ul, ol, dl {
    padding: 0;
    margin: 0;
    }
    li {
    list-style-type:none;
    }
    h1, h2, h3, h4, h5, h6, p {
    margin-top: 0;
    padding-right: 15px;
    padding-left: 15px;
    }
    a img {
    border: none;
    }
    a:link {
    color: #FFFF00;
    text-decoration: underline;
    }
    a:visited {
    color: #FF0000;
    text-decoration: underline;
    }
    a:hover, a:active, a:focus {
    text-decoration: none;
    }
    .container {
    width: 960px;
    color: #FF0;
    background-color: #5e757d;
    border: thin solid #FF0;
    margin-right: auto;
    margin-left: auto;
    margin-top: 25px;
    margin-bottom: 15px;
    }
    .header {
    height: 150px;
    background-color: #2F553E;
    background-image: url(../bilder/logo.gif);
    border-bottom-width: thin;
    border-bottom-style: solid;
    border-bottom-color: #FF0;
    }
    .navi {
    }
    .sidebar1 {
    float: left;
    width: 186px;
    height: 100%;
    background-color: #2F553E;
    color: #FF0;
    border-right-width: thin;
    border-right-style: solid;
    border-right-color: #FF0;

    }
    .content {
    width: 770px;
    height:auto;
    float: right;
    }
    .content ul, .content ol {
    padding: 0 15px 15px 40px;
    }
    .footer {
    clear: both;
    text-align:center;
    text-decoration: none;
    background-color: #2F553E;
    color: #FF0;
    height: 55px;
    width: 100%;
    border-top-width: thin;
    border-top-style: solid;
    border-top-color: #FF0;
    padding-top: 15px;
    }
    .fltrt {
    float: right;
    margin-left: 8px;
    }
    .fltlft {
    float: left;
    margin-right: 8px;
    }
    .clearfloat {
    clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
    }
    .tab_aufklaeber {
    margin-left: 15px;
    }
    .klaeber_groesse {
    margin-left: 15px;
    height: 94px;
    width: 92px;
    }
    .tabellefan {
    margin-left: 10px;
    }

  • #2
    1. Bitte formatiere deinen Code vernünftig, wenigstens mit [code]-Tags.

    2. CSS ohne zugehöriges HTML hat so gut wie keine Aussagekraft.

    3. Höhenangaben in Prozent erfordern, dass das Elternelement eine explizite Höhe gesetzt hat – ob das der Fall ist, lässt sich hier zwar schwer sagen (siehe Punkt 2), aber wenn ich mir die Stellen anschaue, wo in deinem CSS height verwendet wird, vermute ich mal eher nein.
    I don't believe in rebirth. Actually, I never did in my whole lives.

    Kommentar


    • #3
      hier der ganze 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>
      <title>Testseite</title>
      <style>
      body {
      font: 100%/1.4 Verdana, Arial, §§ Helvetica, sans-serif;
      margin: 0;
      padding: 0;
      color: #000;
      background-color: #3c4e58;
      }
      ul, ol, dl {
      padding: 0;
      margin: 0;
      }
      li {
      list-style-type:none;
      }
      h1, h2, h3, h4, h5, h6, p {
      margin-top: 0;
      padding-right: 15px;
      padding-left: 15px;
      }
      a img {
      border: none;
      }
      a:link {
      color: #FFFF00;
      text-decoration: underline;
      }
      a:visited {
      color: #FF0000;
      text-decoration: underline;
      }
      a:hover, a:active, a:focus {
      text-decoration: none;
      }
      .container {
      width: 960px;
      color: #FF0;
      background-color: #5e757d;
      border: thin solid #FF0;
      margin-right: auto;
      margin-left: auto;
      margin-top: 25px;
      margin-bottom: 15px;
      }
      .header {
      height: 150px;
      background-color: #2F553E;
      background-image: url(../bilder/logo.gif);
      border-bottom-width: thin;
      border-bottom-style: solid;
      border-bottom-color: #FF0;
      }
      .navi {
      }
      .sidebar1 {
      float: left;
      width: 186px;
      height: 100%;
      background-color: #2F553E;
      color: #FF0;
      border-right-width: thin;
      border-right-style: solid;
      border-right-color: #FF0;

      }
      .content {
      width: 770px;
      height:auto;
      float: right;
      }
      .content ul, .content ol {
      padding: 0 15px 15px 40px;
      }
      .footer {
      clear: both;
      text-align:center;
      text-decoration: none;
      background-color: #2F553E;
      color: #FF0;
      height: 55px;
      width: 100%;
      border-top-width: thin;
      border-top-style: solid;
      border-top-color: #FF0;
      padding-top: 15px;
      }
      .fltrt {
      float: right;
      margin-left: 8px;
      }
      .fltlft {
      float: left;
      margin-right: 8px;
      }
      .clearfloat {
      clear:both;
      height:0;
      font-size: 1px;
      line-height: 0px;
      }
      .tab_aufklaeber {
      margin-left: 15px;
      }
      .klaeber_groesse {
      margin-left: 15px;
      height: 94px;
      width: 92px;
      }
      .tabellefan {
      margin-left: 10px;
      }

      </style>
      </head>
      <body>
      <div class="container">
      <div class="header"><!-- end .header --></div>
      <div class="sidebar1">
      <ul class="nav">
      <li></li>
      </ul>
      <ul id="MenuBar2" class="MenuBarVertical">
      <li>
      <div align="center"><a href="../../../xampp/htdocs/giovanni/test.html">1</a></div>
      </li>
      <li>
      <div align="center"><a href="../../../xampp/htdocs/giovanni/seiten/test.html">2</a></div>
      </li>
      <li>
      <div align="center"><a href="../../../xampp/htdocs/giovanni/seiten/test.html">3</a></div>
      </li>
      <li>
      <div align="center"><a href="../../../xampp/htdocs/giovanni/seiten/test.html">4</a> </div>
      </li>
      <li>
      <div align="center"><a href="../../../xampp/htdocs/giovanni/seiten/test.html">5</a></div>
      </li>
      <li>
      <div align="center"><a href="../../../xampp/htdocs/giovanni/seiten/test.html">6</a> </div>
      </li>
      <li>
      <div align="center"><a href="../../../xampp/htdocs/giovanni/seiten/test.html">7</a></div>
      </li>
      <li>
      <div align="center"><a href="../../../xampp/htdocs/giovanni/seiten/test.html">8</a></div>
      </li>
      </ul>
      <p><a href="http://www.test.ch" target="_blank">Garage No Limits</a></p>
      <p><a href="http://www.test.ch/" target="_blank">Tuning-Ersatzteile</a></p>
      <p><a href="http://www.test.ch" target="_blank">Folien-Beschriftungen</a></p>
      <p><a href="http://www.test.ch" target="_blank">Werkstattaktionen</a> </p>
      <p>hier sollte der Div automatisch immer bis runter gehen!!!!</p>
      </div>
      <div class="content">
      <p align="center">&nbsp;</p>
      <h1 align="center">&nbsp;</h1>
      <p>Wir danken Ihnen für Ihr Interesse an unseren Angebote und hoffen, dass Sie finden was Sie benötigen. Wir beschriften Tafeln, Fahrzeuge, Fahrzeugscheiben, Schaufenster, T-Shirts.</p>
      <p><br />
      Wir geben alles, um Ihre Erwartungen zu erfüllen.<br />
      <br />
      Wir sind überzeugt, dass Sie mit unserem Service zufrieden sind.<br />
      <br />
      Unsere Folien haben Top-Qualität und halten 5 – 8 Jahre, ausgenommen sind Chrom-Folien, Fotodruck . Der Fahrzeuglack wird von der Folie nicht angegriffen und sie lässt sich jeder Zeit wieder entfernen.<br />
      </p>
      <p>Das ideale Geschnek für: Gottis, Göttis, Eltern, Grosseltern, oder für alle die, die jemandem ein freude bereiten möchten<br />
      </p>
      <p align="center"><img src="../../../xampp/htdocs/giovanni/bilder/start.gif" width="407" height="422" /><!-- end .content --></p>
      </div>
      <div class="footer">
      <p><a href="../../../xampp/htdocs/giovanni/seiten/kontakt.html">Kontakte</a> - <a href="../../../xampp/htdocs/giovanni/seiten/agb.html" target="_blank">AGB</a> - <a href="../../../xampp/htdocs/giovanni/seiten/impressum.html" target="_blank">Impressum</a></p>
      <!-- end .footer --></div>
      <!-- end .container --></div>
      </body>
      </html>

      Kommentar


      • #4
        Div will einfach nicht 100% sein

        Enschuldigung hatte ich nicht gerafft, hoffe jetzt stimms so.
        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>
        <title>Testseite</title>
        <style>
        body {
            font: 100%/1.4 Verdana, Arial, §§ Helvetica, sans-serif;
            margin: 0;
            padding: 0;
            color: #000;
            background-color: #3c4e58;
        }
        ul, ol, dl {
            padding: 0;
            margin: 0;
        }
        li {
            list-style-type:none;
        }
        h1, h2, h3, h4, h5, h6, p {
            margin-top: 0;
            padding-right: 15px;
            padding-left: 15px;
        }
        a img {
            border: none;
        }
        a:link {
            color: #FFFF00;
            text-decoration: underline;
        }
        a:visited {
            color: #FF0000;
            text-decoration: underline;
        }
        a:hover, a:active, a:focus {
            text-decoration: none;
        }
        .container {
            width: 960px;   
            color: #FF0;
            background-color: #5e757d;
            border: thin solid #FF0;
            margin-right: auto;
            margin-left: auto;
            margin-top: 25px;
            margin-bottom: 15px;
        }
        .header {
            height: 150px;
            background-color: #2F553E;
            background-image: url(../bilder/logo.gif);
            border-bottom-width: thin;
            border-bottom-style: solid;
            border-bottom-color: #FF0;
        }
        .navi {
        }
        .sidebar1 {
            float: left;
            width: 186px;
            height: 100%;
            background-color: #2F553E;
            color: #FF0;
            border-right-width: thin;
            border-right-style: solid;
            border-right-color: #FF0;
           
        }
        .content {
            width: 770px;
            height:auto;
            float: right;
        }
        .content ul, .content ol {
            padding: 0 15px 15px 40px;
        }
        .footer {
            clear: both;
            text-align:center;
            text-decoration: none;
            background-color: #2F553E;
            color: #FF0;
            height: 55px;
            width: 100%;
            border-top-width: thin;
            border-top-style: solid;
            border-top-color: #FF0;
            padding-top: 15px;
                }
        .fltrt {
            float: right;
            margin-left: 8px;
        }
        .fltlft {
            float: left;
            margin-right: 8px;
        }
        .clearfloat {
            clear:both;
            height:0;
            font-size: 1px;
            line-height: 0px;
        }
        .tab_aufklaeber {
            margin-left: 15px;
        }
        .klaeber_groesse {
            margin-left: 15px;
            height: 94px;
            width: 92px;
        }
        .tabellefan {
            margin-left: 10px;
        }
        
        </style>
        </head>
        <body>
        <div class="container">
          <div class="header"><!-- end .header --></div>
          <div class="sidebar1">
            <ul class="nav">
              <li></li>
            </ul>
            <ul id="MenuBar2" class="MenuBarVertical">
              <li>
                <div align="center"><a href="../../../xampp/htdocs/giovanni/test.html">1</a></div>
              </li>
              <li>
                <div align="center"><a href="../../../xampp/htdocs/giovanni/seiten/test.html">2</a></div>
              </li>
              <li>
                <div align="center"><a href="../../../xampp/htdocs/giovanni/seiten/test.html">3</a></div>
              </li>
              <li>
                <div align="center"><a href="../../../xampp/htdocs/giovanni/seiten/test.html">4</a> </div>
              </li>
              <li>
                <div align="center"><a href="../../../xampp/htdocs/giovanni/seiten/test.html">5</a></div>
              </li>
              <li>
                <div align="center"><a href="../../../xampp/htdocs/giovanni/seiten/test.html">6</a> </div>
              </li>
              <li>
                <div align="center"><a href="../../../xampp/htdocs/giovanni/seiten/test.html">7</a></div>
              </li>
              <li>
                <div align="center"><a href="../../../xampp/htdocs/giovanni/seiten/test.html">8</a></div>
              </li>
            </ul>
            <p><a href="http://www.test.ch" target="_blank">Garage No Limits</a></p>
            <p><a href="http://www.test.ch/" target="_blank">Tuning-Ersatzteile</a></p>
            <p><a href="http://www.test.ch" target="_blank">Folien-Beschriftungen</a></p>
            <p><a href="http://www.test.ch" target="_blank">Werkstattaktionen</a> </p>
            <p>hier sollte der Div automatisch immer bis runter gehen!!!!</p>
          </div>
          <div class="content">
            <p align="center">&nbsp;</p>
            <h1 align="center">&nbsp;</h1>
            <p>Wir danken Ihnen für Ihr Interesse an unseren Angebote und  hoffen, dass Sie finden was Sie   benötigen. Wir beschriften Tafeln,  Fahrzeuge, Fahrzeugscheiben, Schaufenster, T-Shirts.</p>
            <p><br />
              Wir geben alles, um Ihre Erwartungen zu erfüllen.<br />
              <br />
              Wir sind überzeugt, dass Sie mit unserem Service zufrieden sind.<br />
              <br />
              Unsere Folien haben Top-Qualität und halten 5 – 8 Jahre,  ausgenommen sind Chrom-Folien,  Fotodruck .  Der Fahrzeuglack wird von  der Folie nicht angegriffen und sie lässt sich jeder Zeit     wieder  entfernen.<br />
            </p>
            <p>Das ideale Geschnek für: Gottis, Göttis, Eltern,  Grosseltern, oder für alle die, die jemandem ein freude bereiten  möchten<br />
            </p>
            <p align="center"><img  src="../../../xampp/htdocs/giovanni/bilder/start.gif" width="407"  height="422" /><!-- end .content --></p>
        </div>
          <div class="footer">
            <p><a  href="../../../xampp/htdocs/giovanni/seiten/kontakt.html">Kontakte</a>  - <a href="../../../xampp/htdocs/giovanni/seiten/agb.html"  target="_blank">AGB</a> - <a  href="../../../xampp/htdocs/giovanni/seiten/impressum.html"  target="_blank">Impressum</a></p>
            <!-- end .footer --></div>
          <!-- end .container --></div>
        </body>
        </html>
        Das ist der ganze Quelltext inkl. CSS
        Ich hoffe es jetzt richtig gemacht zu haben.
        mfg
        Dany

        Kommentar

        Lädt...
        X