need help on css float

johnzky

New Member
Why only the first line of paragraph appears on the left and all other lines below the image when both the paragraph and img is floated?Here goes the code..\[code\] <!DOCTYPE html> <html> <head> <style> img,p { float:left; } </style> </head><body> <img src="http://stackoverflow.com/questions/14052743/logocss.gif" width="95" height="84" /> <p> This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. </p>\[/code\]But everything goes fine when only img is floated i.e all the text appears on left
 
Back
Top