So I need a little help here. I have several images that need to automatically conform to browser size. I have it working perfectly by just adding img tags, they will automatically cross the page until they hit the end of the browser then they will go to the next line. The problem is I need to add text to these images so I tried using div tags but they don't conform like the img tags. The text also has to be in a certain spot over the image. For example the text has to be 50 px from the left side of every image. Anyone know how I can do this with html or css?
*solved* I solved the problem by floating all img divs to the left and adding a blank div after them all with clear:both.