Why do some tags start a new line and some don't? I know I can try them out, but is there a rule/rationale behind the behavior? For example, <table> starts and ends its own line, e.g.:
- Code: Select all
This is <table> <tr> <td> a hot </td> </tr> </table> pie.
would produce:
This is
a hot
pie.
Note that the table is on its own new line. On the other hand, for example, <img> would not start a new line and would simply continue with my text like a single letter, with no break in the text line, no matter how big the image is, as in
- Code: Select all
This is <img src="A_HOT.jpg"> pie.
I get
This is [a huge image] pie.
In general, I'd like to have a table that can be "embedded" in my text, (i.e., without creating its own new line, but make the line as tall as needed, much like the <img> tag). Is this possible?
Thanks
David


