CSS Positioning, Example 1
Relative Positioning
Image in the Flow
This is the text that you would like the image after. Then you place the image...
<p> This is the text that you would like the image after. Then you place the image...
<img src="cecb2.gif" width="32" height="32" alt="CECB" /></p>
Image with Positioning
This is the text that you would like the image after. Then you place the image and position it underneath the text...
<p> This is the text that you would like the image after. Then you place the image and position it underneath the text...Jennifer Kyrnin
<img src="cecb2.gif" width="32" height="32" alt="CECB" style="position:relative; left:15px; top:-15px;" /></p>

