Einzelnen Beitrag anzeigen

Marco Haffner
(Gast)

n/a Beiträge
 
#7

Re: [CSS] Inhalt bricht aus DIV-Container aus

  Alt 11. Mär 2005, 15:23
height:100% bezieht sich nicht auf die Höhe des Inhaltes, sondern die Höhe des sichtbaren Bereichs.

Liefert folgendes das gewünschte Ergebnis?
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
   <title></title>
   <style type="text/css">
   /*<![CDATA[*/
   html,body{height:100%;margin:0;padding:0}
   #content{border-left:128px solid #ccccad;height:100%;min-height:100%}
   div[id]#content{height:auto}
   /*]]>*/
   </style>
</head>
<body>
   <div id="content">
      asd













      asd













      asd













      asd













      asd
   </div>
</body>
</html>
  Mit Zitat antworten Zitat