fr@gma: Liquid- Design mit 4 div Containern

Beitrag lesen

Hallo LBS,

Du brauchst wahrscheinlich ein Hilfsdiv, etwa so hier:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Unbenanntes Dokument</title>
<style type="text/css">
<!--
body {
 width: 100%;
 margin: 0px;
 padding: 0px;
}
#test01 {
 background-color: #990000;
 position: relative;
 margin-left: 200px;
 width: auto;
}
#test {
 background-color: #FF0000;
 position: absolute;
 height: 160px;
 width: 100%;
 left: auto;
 top: 100px;
 right: auto;
}
-->
</style>
</head>

<body>
<div id="test01">
<div id="test"></div>
</div>
</body>
</html>

Ich hoffe, ich habe Dich richtig verstanden?!

LG fr@gma