|
Posted by Jonathan N. Little on 06/12/07 17:23
None wrote:
> Hello,
Hello none. Are you associated with the domain none.com?
http://www.dnsstuff.com/tools/whois.ch?%26ip%3Dnone.com
WHOIS - none.com
If not your should *really* learn how to properly munge your email!
http://www.google.com/search?hl=en&q=properly+munge+email&btnG=Google+Search
properly munge email - Google Search
>
> I have a table where in one column, we display an image and its label.
> This works out fine.
>
> However, when there are two or more images to display, we would like the
> display to break
> after each image-label pair so that they appear on top of each other. We
> currently use
> <br> tag to do this, but then images have spaces between them. If we
> don't use <br> tags,
> then the images display on the same line which is not what we want.
>
> Is there a way to eliminate spaces above/below each image-label pairs? I
> would like to do this
> via CSS if possible.
>
> Thanks in advance!
>
>
> ====================================================
> <table>
> <tr> <td> Test>
> <td> <img ...> This is image 1
> <br/>
> <img ...> This is image 2
> <br/>
> </td>
> </tr>
> </table>
>
>
Yes, dump the table use DIVs and style accordingly
div.pixbox { margin: 0; padding: 0; }
<div class="pixbox">
<img src="somePix.jpg" alt="1st Pix">
First one
</div>
<div class="pixbox">
<img src="anotherPix.jpg" alt="2nd Pix">
Second one
</div>
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
Navigation:
[Reply to this message]
|