Guten Abend.
Mein Problem ist das ich den Section und Aside Block nicht automatisch auf die exakt selbe höhe bekomme.
Müsste der Section Bereich in seiner höhe nicht Variable sein wäre, das ja kein Problem aber naja so ist es halt leider nicht [Blockierte Grafik: http://www.der-webdesigner.net/public/images/…/icon_smile.gif]
HTML
<!DOCTYPE html>
<html>
<head>
<title>Titel und so</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<dir id="site">
<header>Titel und so</header>
<div id="steuerung">Steuerung</div>
<section>
<article><h1>fdlfsjsfdjodfjjdfjdf</h1><br />dddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd"</article>
</section>
<aside>ASIDE</aside>
<footer>FOOTER</footer>
</dir>
</body>
</html>
Alles anzeigen
und hier die css:
HTML
header{
width: 900px;
height: 200px;
background-color: orange;
float: left;
}
section{
width: 700px;
background-color: blue;
float: left;
word-wrap:break-word;
}
aside{
margin-bottom: 10px;
width: 200px;
background-color: red;
float: right;
}
footer{
height: 2em;
width: 100%;
background-color: pink;
clear: both;
}
#site{
width: 900px;
background-color: black;
margin: auto;
}
#steuerung{
background-color: brown;
width: 100%;
float: left;
}
body{
background-color: black;
}
*{
padding: 0px;
margin: 0px;
}
Alles anzeigen
Bild: http://postimg.org/image/lwrgb6bi9/
Das Blaue ist der Section und das Rote der Aside Bereich.