Wie bekomt mans hin, dass der Hintergrund (class zwei) in der Höhe mit Klasse drei mitgeht? Also in dem Fall soll der Hintergrund 200px hoch sein. Steh grad auf der Leitung...
HTML:
.zwei {
width: 90%;
background: #0000ff;
position: absolute;
top:10px;
left: 10px;
}
.drei {
position: absolute;
left: 0px;
top: 0px;
width: 100px;
height: 200px;
background: #00ff00;
}
</style>
</head>
<body>
<div class="zwei">
<div class="drei"></div>
</div>