View previous topic :: View next topic |
Author |
Message |
gymboy689 -
Joined: 04 Jan 2004 Posts: 87
|
Posted: Fri Feb 13, 2004 1:27 am Post subject: Image Alignment |
|
|
I want an image and text to show up like this:
text..............pic
text..............pic
text..............pic
(all 3 pics are one pic
but all i can do is get it to show up like this:
text...................pic
........................pic
........................pic
text
text
can someone give me an html script to do this? |
|
Back to top |
|
 |
TRUSTAbyss -
Joined: 29 Oct 2003 Posts: 3752 Location: USA, GA
|
Posted: Fri Feb 13, 2004 1:51 am Post subject: |
|
|
use a table
Code: | <table border="0"><td>Text</td> <td>Image</td></table> |
or you can use the pre tags Code: | <pre>Text <img src=""></pre> |
I recommend using the pre tags because the fact that the text isn't
aligned in the middle part up top near the image. Use <pre></pre> |
|
Back to top |
|
 |
|