2 boxen nebeneinander, am besten umfließen lassen?
Chris
- css
Hi,
ich versuche die Boxen links und rechts nebeneinander zu bekommen.
Leider kenne ich die Breite nicht (in rechts ist ein beliebig breites Bild drin).
Funktioniert das irgendwie?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Unbenanntes Dokument</title>
<style type="text/css">
<!--
.oben100Pro {
width:100%;
clear:both;
}
.links
{
float:left;
}
.rechts
{
float:right;
}
.unten
{
clear:both;
float:left;
}
-->
</style>
</head>
<body>
<div class="oben100Pro"> Vorheriges div </div>
<div class="links"> Box Links<br />
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.</div>
<div class="rechts"> Box rechts </div>
<div class="unten"> Nächstes div </div>
</body>
</html>
Danke schon mal
Bye, Chris