I have a situation where my text within a TD tag is wrapping under the image when I want it to actually wrap and start under the previous line. The best way to explain this is with some code I have as an example:
<td><img src="img.gif"> Text information that I want to wrap, but not under the graphic</td>
so, what I get looks like this:
GRAPHICFILE Text information that I want
to wrap, but not under the graphic
where I want to have this:
Is there a way that I can handle this with a div or span tag (or something other than creating an inner table, then separating out the graphic and text in their respective TDs? Thanks
regards,
Brian
The problem with doing something right the first time is that nobody appreciates how difficult it was.
<td><img src="img.gif"> Text information that I want to wrap, but not under the graphic</td>
so, what I get looks like this:
GRAPHICFILE Text information that I want
to wrap, but not under the graphic
where I want to have this:
Code:
GRAPHICFILE Text information that I want
to wrap, but not under the graphic
Is there a way that I can handle this with a div or span tag (or something other than creating an inner table, then separating out the graphic and text in their respective TDs? Thanks
regards,
Brian
The problem with doing something right the first time is that nobody appreciates how difficult it was.