Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Image float and text wrap

Status
Not open for further replies.

Streetdaddy

Programmer
Jun 10, 1999
161
0
0
AU
I want to have an image with text on the right, but when the text goes beyond the bottom of the image I don't want it wrap, but rather to keep the consistent margin:

------------- text text text
| | text text text
| | text text text
| | text text text
| image | text text text
| | text text text
| | text text text
| | text text text
------------- text text text
text text text
text text text
text text text
text text text
text text text
text text text

Can this be achieved without using tables?

Miles

Those Micros~1 guys sure know what they doing!
 
You could try this:
Code:
<img src=&quot;...&quot; style=&quot;float: left;&quot; />
<div style=&quot;float: left;&quot;>
 text<br>
 more text<br>
 text<br>
 text<br>
 more text<br>
 text<br>
 text<br>
 more text<br>
 text<br>
</div>
Hope it helps.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top