Hi, I was creating a page, and I cannot get something to work. I have an image at the end of the paragraph, and in css this is floating right. I cannot make the image move up to be part of a paragraph, and then make text around it. JSFIDDLE
HTML
<p>
TEXT GOES HERE
<img src="src/src.jpg">
</p>
CSS
img{
float:right;
}
Be sure to check out JSfiddle, because it has a better idea of what I want.
source
share