English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

How do you wrap text around a picture, that is, how do you embed a picture within a paragraph? Send links if you cbf to explain it. THanksss

2006-10-23 17:56:49 · 3 answers · asked by Anonymous in Computers & Internet Programming & Design

3 answers

You have to insert the tag withing the written text...for example:

blah blah blah blah blah
blah blahblah
blah blah blah blah

2006-10-23 18:02:07 · answer #1 · answered by Anonymous · 0 1

You need to use the "float" CSS style on your IMG object. IMG objects render inline, so if you just add the tag inline with your text it will cause the line spacing to expand to the size of the image (assuming the image is bigger than the font). If you want text to wrap around the right side of the image, use float: left (floats the image to the left, causing text to wrap to the right). Vice versa for float: right.

You can declare the style inline on the object, like , in a