Div ohne Zeilenumbrüche

Status
Nicht offen für weitere Antworten.

casr

Mitglied
Hallo Forum

Ich kann ein <img> mitten in einen Text platzieren, und das Bild verhält sich wie ein "Wort". Wenn ich aber ein <div> in einen Text platziere, dann bekommt ich automatisch davor und danach einen Zeilenumbruch.

Wie bekomm ich vom <div> in dieser Hinsicht das Verhalten eines <img>?

Gruss und Dank
casr

ach ja, hier noch ein bisserl code:
HTML:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
        "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
<HTML>
<HEAD>
	<META http-equiv="content-type" content="text/html; charset=iso-8859-1" />
	<TITLE>Untitled</TITLE>
    <STYLE type="text/css">
<!--
.aa {
	border: thin solid #000000;
}

.bb {
	border: thin solid #000000;
	width:200px;
	height:100px;
	}

-->
    </STYLE>
</HEAD>
<BODY>
<CENTER>
a text is a text. 
a text is a text. 
a text is a text. 
a text is a text. 
a text is a text. 
<IMG  src="http://www.google.ch/images/hp0.gif" class="aa" />
a text is a text. 
a text is a text. 
a text is a text. 
a text is a text. 
a text is a text. 
a text is a text. 
a text is a text. 
a text is a text. 
a text is a text. 
a text is a text. 
a text is a text. 
a text is a text. 
a text is a text. 
a text is a text. 
a text is a text. 
a text is a text. 
a text is a text. 
<DIV  class="bb">
a text is a text is a text is a text is a text is a text is a text is a text is a text.
</DIV> a text is a text. 
a text is a text. 
a text is a text. 
a text is a text. 
a text is a text. 
a text is a text. 
a text is a text. 
a text is a text. 
</CENTER>
</BODY>
</HTML>
 
Zuletzt bearbeitet:
Ok ok, danke, das funktioniert ja schon ganz gut. Das <div> verliert mir jetzt einfach die Block-Angaben für Höhe und Breite. Es gibt jetzt einfach einen Rahmen um den Text. Wie krieg ich das noch hin, dass ich ein definiertes Rechteck hinbekomme?
 
Siehe Beispiel oben; Das ganze ist ein Text mit ein paar Thumnails mitten im Text. Wird auf die Thumbnails geclickt, sollten diese dann in ihrer ganzen Grösse dargestellt werden, aber eben im Textfluss. Mit den Images funktioniert dies ja auch prächtig (da inline), nur aber sind nicht alles Images, sonder es gibt auch dynamischen Text. Die "grossen" Images sind alle gleich gross. Das Textfeld soll nun in der gleichen Grösse wie die Images und ebenfalls im Fluss des Textes aufgepoppt werden.
 
Status
Nicht offen für weitere Antworten.
Zurück