We can move things left or right a little bit with a space.
You may just want something moved left or right a little bit from one of the basic positions. You can use a soft space (space bar) or a hard space: . I have a strong preference for the hard space since it can be difficult to keep track of spaces in your code.
To move an image to the right, use some spaces first, then your image tag.
Sample code:
<td align="left">
<img src="images/sailboat.gif">
</td>
|
To move an image to the left, add some spaces after your image tag.
Sample code:
<td align="right">
<img src="images/sailboat.gif">
</td>
|
There is one problem with this technique. Different people use different browser settings. Even with WebTV, we can choose small, medium or large text. This may affect the width of a space. Not everyone will see your placement the same as you do. We'll learn how to get around this later.
Use spaces to position an image in a table cell. Post your table.
As always, questions and comments are welcome.
Happy tabling,
Gnubee