Rahmen unterbrochen

Status
Nicht offen für weitere Antworten.
Hi,

versuch es mal mit diesem Stylesheet für die abgerundete Box, die wohl eine Mindesthöhe von 350px besitzen soll, min-height aber vom IE6 nicht unterstützt wird:

Code:
div.links {
        background: url(img/ww.gif) repeat-y;
      }

div.rechts {
        background: url(img/ee.gif) repeat-y right;
      }

div.oben {
        background: url(img/nn.gif) repeat-x;
      }

div.unten {
        background: url(img/ss.gif) bottom repeat-x;
      }

div.linkeObereEcke {
        background: url(img/nw.gif) left top no-repeat;
      }

div.rechteObereEcke {
        background: url(img/ne.gif) right top no-repeat;
      }

div.linkeUntereEcke {
        background: url(img/sw.gif) left bottom no-repeat;
      }

div.rechteUntereEcke {
        background: url(img/se.gif) right bottom no-repeat;
      }

div.inhalt {
        padding: 10px;
        min-height: 350px; /* Für moderne Browser */
        height: auto !important;
        height: 350px;  /* Für IE6 */
      }
 
Status
Nicht offen für weitere Antworten.
Zurück