Hallo,
ich möchte gern mit CSS eine Box positioniern und um diese Box eine Text fließen lassen.
Für Tips bin ich sehr dankbar
Grüße
Thomas
ich möchte gern mit CSS eine Box positioniern und um diese Box eine Text fließen lassen.
HTML:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Unbenanntes Dokument</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
.BOX1 {
height: 50px;
width: 200px;
left: 50px;
top: 50px;
position: absolute;
}
.BOX2 {
height: 50px;
width: 50px;
background-color: #00FFFF;
left: 50px;
top: 50px;
position: absolute;
float: right;
}
-->
</style>
</head>
<body>
<div class="BOX1">Dies ist Text in Box Eins, Dies ist Text in Box Eins, Dies ist Text in Box Eins,
Dies ist Text in Box Eins, Dies ist Text in Box Eins, Dies ist Text in Box Eins
<div class="BOX2"></div>
</div>
</body>
</html>
Für Tips bin ich sehr dankbar
Grüße
Thomas